/* ============================================================
   PBJ Strategic Accounting — Premium Design System
   WCAG 2.1 AA compliant
   ============================================================ */

/* ── 1. Google Fonts ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

/* ── 2. Design Tokens ────────────────────────────────────── */
:root {
  /* Colors */
  --bg:            #F6F2EF;
  --surface:       #FFFFFF;
  --surface-2:     #EDE8E3;
  --surface-3:     #E4DDD6;
  --text:          #1C1917;
  --text-muted:    #5C5248;
  --accent:        #48C2E0;
  --accent-dark:   #2EA3C5;
  --accent-light:  #9FE2F0;
  --gold:          #B8882A;
  --gold-bg:       #FDF6E3;
  --dark-teal:     #48C2E0;
  --dark-teal-2:   #3AB0CC;
  --pink:          #D86C97;
  --pink-dark:     #B54D7A;
  --pink-mid:      #E8A0BC;
  --pink-light:    #FCEEF5;
  --border:        #DDD6CF;
  --border-light:  #EDE8E3;
  --focus:         #1F6FEB;

  /* Layout */
  --max:           1160px;
  --radius-sm:     8px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-pill:   999px;

  /* Shadows */
  --shadow-sm:     0 2px 8px rgba(28, 25, 23, .06);
  --shadow:        0 8px 24px rgba(28, 25, 23, .09);
  --shadow-lg:     0 16px 48px rgba(28, 25, 23, .12);
  --shadow-hover:  0 12px 36px rgba(28, 25, 23, .14);

  /* Spacing */
  --section-y:     5rem;
  --section-y-sm:  3rem;
}

/* ── 3. Reset & Base ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; }
p, h1, h2, h3, h4 { overflow-wrap: break-word; }

a {
  color: var(--accent-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover { color: var(--accent); }

/* ── 4. Focus Styles (WCAG AA) ───────────────────────────── */
:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}
/* Remove focus ring for mouse users */
:focus:not(:focus-visible) { outline: none; }

/* ── 5. Skip Link ────────────────────────────────────────── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  background: var(--text);
  color: #fff;
  padding: .75rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: .9rem;
  z-index: 9999;
  text-decoration: none;
}
.skip-link:focus {
  left: 1rem;
}

/* ── 6. Layout ───────────────────────────────────────────── */
.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}
.section--sm {
  padding: var(--section-y-sm) 0;
}
.section--tinted {
  background: var(--surface-2);
}

/* ── 7. Typography ───────────────────────────────────────── */
h1, h2, h3, h4 {
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -.02em;
  margin-top: 0;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1rem; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); margin-bottom: .75rem; }
h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .5rem; letter-spacing: -.01em; }

.eyebrow {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .6rem;
}

.lead {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 60ch;
  margin-top: 0;
}

.section-header {
  margin-bottom: 2.5rem;
}
.section-header--center {
  text-align: center;
}
.section-header--center .lead {
  margin-inline: auto;
}

/* ── 8. Buttons ──────────────────────────────────────────── */
.btn, .btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.6rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, color .2s, box-shadow .2s, transform .15s;
}
.btn {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(216, 108, 151, .28);
}
.btn:hover {
  background: var(--pink-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(216, 108, 151, .45);
  transform: translateY(-1px);
}
.btn:active { transform: translateY(0); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  background: var(--pink-light);
  color: var(--pink-dark);
  border-color: var(--pink);
  transform: translateY(-1px);
}

.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 4px 16px rgba(184, 136, 42, .32);
}
.btn-gold:hover {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 6px 20px rgba(216, 108, 151, .38);
  transform: translateY(-1px);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 1.75rem;
}

/* ── 9. Header & Nav ─────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(rgba(250, 248, 244, .90), rgba(250, 248, 244, .90)),
              url('../img/header-image.png') center / cover no-repeat;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.45rem 0;
}

/* Brand */
.brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
  letter-spacing: -.02em;
}
.brand:hover { color: var(--accent); }
.brand:hover .logo-badge { transform: scale(1.05); }

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #48C2E0 0%, #2EA3C5 100%);
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: .85rem;
  letter-spacing: .03em;
  flex-shrink: 0;
  transition: transform .2s;
  box-shadow: 0 4px 12px rgba(139, 77, 47, .30);
}

/* Desktop nav */
.primary-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  gap: .25rem;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  display: block;
  padding: .5rem .85rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 1rem;
  transition: color .2s, background .2s;
}
.nav-list a:hover {
  color: var(--accent);
  background: var(--surface-2);
}
.nav-list a[aria-current="page"] {
  color: var(--accent);
  background: var(--surface-3);
}

.nav-cta {
  margin-left: .5rem;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 8px;
  margin-left: auto;
  transition: border-color .2s;
}
.hamburger:hover { border-color: var(--accent); }
.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav panel */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(28, 25, 23, .5);
}
.mobile-nav.is-open {
  display: block;
}
.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--surface);
  padding: 1.5rem;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}
.mobile-nav-close {
  background: transparent;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  width: 38px;
  height: 38px;
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  transition: border-color .2s, color .2s;
}
.mobile-nav-close:hover { border-color: var(--accent); color: var(--accent); }

.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .25rem;
}
.mobile-nav-list a {
  display: block;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  font-weight: 600;
  color: var(--text);
  transition: background .2s, color .2s;
}
.mobile-nav-list a:hover,
.mobile-nav-list a[aria-current="page"] {
  background: var(--surface-2);
  color: var(--accent);
}

/* ── 10. Hero ─────────────────────────────────────────────── */
.hero {
  padding: 4.5rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content .eyebrow { margin-bottom: .85rem; }

.hero-content h1 { margin-bottom: 1.1rem; }

.hero-media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}

/* Trust/stats strip */
.trust-strip {
  background: var(--surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 1.5rem 0;
}

.trust-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 3rem;
  align-items: center;
  justify-content: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: .1rem;
}

.trust-stat-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.trust-stat-label {
  font-size: .78rem;
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ── 11. Page Hero ────────────────────────────────────────── */
.page-hero {
  padding: 3.5rem 0 2.5rem;
  background: var(--dark-teal);
  border-bottom: none;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: .6rem;
  color: #fff;
}

.page-hero p {
  color: rgba(255,255,255,.92);
  font-size: 1.08rem;
  max-width: 60ch;
  margin: 0 auto;
}

.page-hero .eyebrow,
.page-hero .kicker {
  color: #1C1917;
}

.page-hero a {
  color: #fff;
}

/* ── 12. Cards (shared) ───────────────────────────────────── */
.card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
  transition: box-shadow .25s, transform .25s;
}
.card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* ── 13. Service Cards ────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--surface-2);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.service-icon svg { width: 24px; height: 24px; }
.service-icon:has(.service-icon-img) { background: none; width: 72px; height: 72px; }
.service-icon-img { width: 100%; height: 100%; object-fit: contain; }

.service-card h2 {
  font-size: 1.1rem;
  margin-bottom: .5rem;
}
.service-card p {
  font-size: .92rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ── 14. Testimonials ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.quote-card::before {
  content: '\201C';
  position: absolute;
  top: .85rem;
  left: 1.5rem;
  font-size: 3.25rem;
  line-height: 1;
  color: var(--accent-light);
  opacity: .35;
  font-family: Georgia, serif;
  pointer-events: none;
}
.quote-card blockquote {
  margin: 0 0 1.25rem;
  padding-top: 2rem;
  font-size: .97rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
}
.quote-card blockquote::before { content: ''; }
.quote-author {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.quote-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
  object-fit: cover;
}
.quote-author-name {
  font-weight: 700;
  font-size: .92rem;
  margin: 0;
}
.quote-author-loc {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
}

/* ── Google Reviews ───────────────────────────────────────── */
.google-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: rgba(255,255,255,.92);
}
.google-rating-summary .rating-score {
  font-size: 1.75rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
.google-rating-summary .rating-stars svg {
  width: 18px;
  height: 18px;
  fill: #FBBC04;
  display: inline-block;
  vertical-align: middle;
}
.google-rating-summary .rating-count {
  font-size: .88rem;
  opacity: .65;
}

/* Ticker */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.reviews-ticker-wrap {
  overflow: hidden;
  /* fade edges */
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  margin: 0 -1rem;
}
.reviews-ticker {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: ticker-scroll 40s linear infinite;
}
.reviews-ticker:hover { animation-play-state: paused; }

/* Compact review card in ticker */
.reviews-ticker .quote-card {
  width: 280px;
  flex-shrink: 0;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  padding: 1.25rem;
}
.reviews-ticker .quote-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
}
.reviews-ticker .quote-card blockquote {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: .88rem;
  margin-bottom: .85rem;
  padding-top: 1.75rem;
}
.reviews-ticker .quote-card::before { font-size: 2.5rem; top: .6rem; left: 1rem; }

.review-star-row {
  display: flex;
  align-items: center;
  gap: .2rem;
  margin-bottom: .5rem;
}
.review-star-row svg {
  width: 13px;
  height: 13px;
  fill: #FBBC04;
}
.review-expand-hint {
  font-size: .75rem;
  color: rgba(248,245,240,.4);
  margin-top: .5rem;
  font-style: italic;
}

.reviews-loading {
  color: rgba(255,255,255,.82);
  font-style: italic;
  padding: 2rem;
}
.reviews-google-link {
  text-align: center;
  margin-top: 1.5rem;
}
.reviews-google-link a {
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.reviews-google-link a:hover { color: #fff; }

/* Review Modal */
.review-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(10,20,30,.7);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.review-modal-backdrop[hidden] { display: none; }
.review-modal {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 520px;
  width: 100%;
  position: relative;
  box-shadow: 0 24px 64px rgba(0,0,0,.35);
  max-height: 90vh;
  overflow-y: auto;
}
.review-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--text-muted);
  padding: .25rem .5rem;
}
.review-modal-close:hover { color: var(--text); }
.review-modal-stars { display: flex; gap: .25rem; margin-bottom: 1rem; }
.review-modal-stars svg { width: 18px; height: 18px; fill: #FBBC04; }
.review-modal-text {
  font-style: italic;
  color: var(--text);
  line-height: 1.75;
  font-size: 1rem;
  margin: 0 0 1rem;
  padding: 0;
}
.review-modal--all {
  max-width: 600px;
  max-height: 80vh;
  overflow-y: auto;
}
.review-modal-all-heading {
  font-size: 1.2rem;
  margin: 0 0 1.5rem;
  padding-right: 2rem;
}
.all-review-item {
  border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 0;
}
.all-review-item:last-child { border-bottom: none; }
.all-review-item .review-star-row { margin-bottom: .5rem; }
.all-review-item blockquote {
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  font-size: .95rem;
  margin: 0 0 .75rem;
}
.all-review-item .quote-author { gap: .6rem; }
.all-review-item .quote-avatar { width: 34px; height: 34px; font-size: .78rem; }

/* ── 15. Pricing ──────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.price-card {
  background: #FBF3E2;
  border: 3px solid #C4882A;
  border-radius: 48% 48% 8px 8px / 38px 38px 8px 8px;
  padding: 2.5rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.price-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.price-card--featured {
  border-color: var(--gold);
  border-width: 3px;
  background: #FFFFFF;
  box-shadow: 0 8px 32px rgba(184, 136, 42, .22);
  position: relative;
}
.price-card--featured:hover {
  box-shadow: 0 16px 48px rgba(184, 136, 42, .30);
}

.price-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: var(--radius-pill);
  margin-bottom: .85rem;
}

.price-card h2 {
  font-size: 1.2rem;
  margin-bottom: .2rem;
}

.price-tagline {
  font-size: .88rem;
  color: var(--text-muted);
  font-style: italic;
  margin: 0 0 1rem;
}

.price-amount {
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent);
  margin: .75rem 0 1rem;
  line-height: 1;
}

.price-card ul {
  padding-left: 0;
  margin: 0 0 1.25rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .45rem;
  flex: 1;
}
.price-card ul li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  color: var(--text-muted);
}
.price-card ul li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231F8DAB'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-card--featured ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23B8882A'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
}

/* Paragraph group label (outside ul) — Classic, Ultimate Spread */
.price-card p.feature-group-label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-body);
  margin: .5rem 0 .35rem;
  letter-spacing: .02em;
}
/* List item group label (checkmark inherited, bold) — Jelly Royale */
.price-card ul li.feature-label {
  font-weight: 700;
  color: var(--text-body);
  margin-top: .5rem;
}
.price-card ul li.feature-label:first-child { margin-top: 0; }
/* Sub-items — indented with small circle bullet */
.price-card ul li.feature-sub {
  padding-left: 1rem;
  font-size: .84rem;
}
.price-card ul li.feature-sub::before {
  content: '';
  width: 12px;
  height: 12px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Ccircle cx='8' cy='8' r='2.5' fill='%231F8DAB'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.price-card .price-note {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0 0 1rem;
  line-height: 1.5;
}
.price-card .btn,
.price-card .btn-secondary,
.price-card .btn-gold {
  width: 100%;
  justify-content: center;
}

/* Specialty pricing (hourly / rescue) */
.pricing-specialty {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 1.25rem;
}


/* Pricing copy section */
.pricing-copy {
  max-width: 70ch;
  margin: 0 auto;
}
.pricing-copy h2 { margin-top: 1.5rem; }
.pricing-copy p { color: var(--text-muted); }


/* ── Why Choose PBJ ───────────────────────────────────────── */
.why-choose-section { background: var(--surface-2); }

.why-choose-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-choose-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin: .4rem 0 .9rem;
  background: linear-gradient(135deg, var(--text) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.why-choose-lead {
  color: var(--text-muted);
  font-size: 1.1rem;
  max-width: 50ch;
  margin: 0 auto;
}

.why-choose-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.why-choose-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.why-choose-card-promise {
  margin-top: auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--accent);
}
.why-choose-card-promise svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
}

.why-choose-card-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #48C2E0 0%, #2EA3C5 100%);
  display: grid;
  place-items: center;
  color: #fff;
  margin-bottom: 1.1rem;
}
.why-choose-card-icon svg { width: 24px; height: 24px; }

.why-choose-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0 0 .85rem;
  color: var(--text);
}

.why-choose-card p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
  margin: 0 0 .75rem;
}
.why-choose-card p:last-child { margin-bottom: 0; }

@media (max-width: 680px) {
  .why-choose-grid { grid-template-columns: 1fr; }
  .why-choose-title { font-size: 2.4rem; }
}

/* ── 16. About ────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.story-block {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.story-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.story-block p:last-child { margin-bottom: 0; }

/* Credentials list */
.cred-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.cred-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .95rem;
  font-weight: 600;
}
.cred-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── 17. Contact ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-portrait {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-portrait-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 3px var(--pink-light), var(--shadow);
  flex-shrink: 0;
}

.contact-portrait-caption {
  display: flex;
  flex-direction: column;
  gap: .2rem;
}

.contact-portrait-caption strong {
  font-size: 1rem;
  color: var(--text);
}

.contact-portrait-caption span {
  font-size: .82rem;
  color: var(--text-muted);
}

/* ── Chat Widget ──────────────────────────────────────────── */
.chat-widget {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 600;
  font-family: var(--font-body);
}

.chat-toggle {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .68rem 1.1rem .68rem .85rem;
  border-radius: var(--radius-pill);
  border: none;
  background: var(--pink);
  color: #fff;
  font-size: .82rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(216,108,151,.45);
  transition: background .18s, transform .15s, box-shadow .18s;
}
.chat-toggle:hover {
  background: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(216,108,151,.55);
}
.chat-toggle:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.chat-toggle-label { font-size: .82rem; }

.chat-panel {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  width: 340px;
  max-height: 500px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  transform: translateY(14px) scale(.97);
  pointer-events: none;
  transition: opacity .22s cubic-bezier(.4,0,.2,1), transform .22s cubic-bezier(.4,0,.2,1);
}
.chat-panel.is-open {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.chat-header {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 1rem;
  background: linear-gradient(135deg, #2C3D5A 0%, #1B2C42 100%);
  color: #fff;
  flex-shrink: 0;
}
.chat-header-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255,255,255,.25);
}
.chat-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}
.chat-header-info { flex: 1; min-width: 0; }
.chat-name { font-size: .88rem; font-weight: 700; margin: 0; line-height: 1.2; }
.chat-status {
  font-size: .72rem;
  margin: .18rem 0 0;
  opacity: .85;
  display: flex;
  align-items: center;
  gap: .35rem;
}

.chat-close {
  background: none;
  border: none;
  cursor: pointer;
  padding: .3rem;
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color .15s;
  flex-shrink: 0;
}
.chat-close:hover { color: #fff; }

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  scroll-behavior: smooth;
}

.chat-msg { animation: msg-slide .18s ease; }
@keyframes msg-slide {
  from { opacity: 0; transform: translateY(6px); }
  to   { opacity: 1; transform: none; }
}

.chat-msg p {
  margin: 0;
  font-size: .875rem;
  line-height: 1.55;
  padding: .6rem .9rem;
  border-radius: 16px;
  display: inline-block;
  max-width: 100%;
  word-break: break-word;
}
.chat-msg--bot { align-self: flex-start; max-width: 90%; }
.chat-msg--bot p {
  background: #EFE6DC;
  color: var(--text);
  border-bottom-left-radius: 4px;
}
.chat-msg--bot p a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.chat-msg--user { align-self: flex-end; max-width: 85%; }
.chat-msg--user p {
  background: var(--accent);
  color: #fff;
  border-bottom-right-radius: 4px;
}

.chat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: .1rem;
}
.chat-chip {
  font-family: inherit;
  font-size: .78rem;
  font-weight: 500;
  padding: .35rem .75rem;
  border-radius: 99px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  cursor: pointer;
  transition: background .15s, color .15s;
}
.chat-chip:hover { background: var(--accent); color: #fff; }

.chat-typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: .65rem .9rem;
  background: #EFE6DC;
  border-radius: 16px;
  border-bottom-left-radius: 4px;
}
.chat-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .5;
  animation: typing-bounce .9s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .15s; }
.chat-typing span:nth-child(3) { animation-delay: .30s; }
@keyframes typing-bounce {
  0%,60%,100% { transform: none; opacity: .5; }
  30% { transform: translateY(-5px); opacity: 1; }
}

.chat-form {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem;
  border-top: 1px solid var(--border);
  background: var(--surface);
  flex-shrink: 0;
}
.chat-input {
  flex: 1;
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: .52rem .9rem;
  font-family: inherit;
  font-size: .875rem;
  color: var(--text);
  background: var(--surface);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.chat-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,137,106,.12);
}
.chat-input:disabled { opacity: .6; }
.chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .15s, transform .12s;
}
.chat-send:hover { background: var(--accent-dark); transform: scale(1.07); }
.chat-send:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.chat-send:disabled { opacity: .5; cursor: not-allowed; transform: none; }

@media (max-width: 420px) {
  .chat-widget { right: 1rem; bottom: 1rem; }
  .chat-panel { width: calc(100vw - 2rem); }
}

/* ── Audio Player ─────────────────────────────────────────── */
.post-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.btn-listen {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .52rem 1.1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent);
  font-size: .875rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s;
  line-height: 1;
}
.btn-listen:hover,
.btn-listen[aria-expanded="true"] {
  background: var(--pink);
  color: #fff;
}
.btn-listen svg { flex-shrink: 0; }

.audio-player {
  margin-top: .75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: .85rem 1rem;
  display: none;
  animation: ap-expand .2s ease;
}
.audio-player.is-open { display: block; }

@keyframes ap-expand {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

.ap-controls {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.ap-play-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, transform .12s;
}
.ap-play-btn:hover { background: var(--accent-dark); transform: scale(1.07); }
.ap-play-btn:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.ap-timeline {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .5rem;
  min-width: 0;
}

.ap-time {
  font-size: .72rem;
  font-weight: 600;
  color: var(--text-muted);
  min-width: 34px;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.ap-progress {
  flex: 1;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  cursor: pointer;
  outline: none;
  min-width: 0;
}
.ap-progress::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
  box-shadow: 0 0 0 2px rgba(0,0,0,.08);
  transition: transform .12s;
}
.ap-progress:hover::-webkit-slider-thumb { transform: scale(1.2); }
.ap-progress::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}
.ap-progress:focus-visible { outline: 2px solid var(--accent); }

.ap-vol {
  display: flex;
  align-items: center;
  gap: .4rem;
  flex-shrink: 0;
}

.ap-vol-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  transition: color .15s;
}
.ap-vol-btn:hover { color: var(--accent); }
.ap-vol-btn:focus-visible { outline: 2px solid var(--accent); border-radius: 3px; }

.ap-vol-range {
  width: 68px;
  -webkit-appearance: none;
  appearance: none;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  cursor: pointer;
  outline: none;
}
.ap-vol-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  cursor: pointer;
}
.ap-vol-range::-moz-range-thumb {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
}

/* Article-page top player — slightly more prominent */
.article-player { margin-bottom: 2rem; }
.article-player .audio-player { display: block; border-color: var(--accent-light); }

@media (max-width: 500px) {
  .ap-vol { display: none; }
}

/* Maps address trigger + popover */
.maps-trigger {
  position: relative;
  display: inline-block;
}

.maps-trigger address {
  cursor: pointer;
  text-decoration: underline;
  text-decoration-style: dotted;
  text-decoration-color: var(--border);
}

.maps-trigger address:hover {
  text-decoration-color: var(--accent);
}

.maps-popover {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 200;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  display: none;
  flex-direction: column;
  gap: .25rem;
  min-width: 180px;
  white-space: nowrap;
}

.maps-popover.is-open { display: flex; }

.maps-popover a {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .75rem;
  border-radius: 6px;
  font-size: .85rem;
  font-weight: 500;
  color: var(--text);
  text-decoration: none;
  transition: background .15s;
}

.maps-popover a:hover { background: var(--surface-2); }

/* Footer variant — opens upward */
.maps-popover--up {
  top: auto;
  bottom: calc(100% + 8px);
  left: 0;
}

.contact-info-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.contact-row {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}
.contact-row:last-child { margin-bottom: 0; }

.contact-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--surface-2);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-icon svg { width: 18px; height: 18px; }

.contact-row-label {
  font-weight: 700;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-muted);
  display: block;
  margin-bottom: .15rem;
}

/* Form */
.form-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-grid {
  display: grid;
  gap: 1.1rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
}

.form-field label {
  font-weight: 600;
  font-size: .88rem;
  color: var(--text);
}
.form-field label abbr {
  text-decoration: none;
  color: var(--accent);
  margin-left: .15rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: .75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(139, 77, 47, .12);
  outline: none;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: var(--text-muted);
  opacity: .7;
}

.form-field textarea { min-height: 150px; resize: vertical; }

.form-note {
  font-size: .8rem;
  color: var(--text-muted);
  margin: .5rem 0 0;
  line-height: 1.5;
}

/* ── 18. Blog ─────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.blog-card {
  background: var(--surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .25s, transform .25s;
}
.blog-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.blog-card-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--surface-2);
  padding: .25rem .65rem;
  border-radius: var(--radius-pill);
  margin-bottom: .75rem;
}

.blog-card h2 {
  font-size: 1.25rem;
  margin-bottom: .4rem;
}
.blog-card h2 a {
  text-decoration: none;
  color: var(--text);
  transition: color .2s;
}
.blog-card h2 a:hover { color: var(--accent); }

.author-row {
  display: flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .75rem;
}

.author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 2px solid var(--pink-light);
  flex-shrink: 0;
}

.post-meta {
  font-size: .83rem;
  color: var(--text-muted);
  margin: 0;
}

.blog-card p.excerpt {
  font-size: .92rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

/* Blog post / article */
.article-header {
  padding: 3rem 0 2rem;
  background: var(--surface-2);
  border-bottom: 1px solid var(--border-light);
}
.article-body {
  max-width: 72ch;
  margin: 0 auto;
}
.article-body h2 { font-size: 1.5rem; margin-top: 2rem; }
.article-body ul, .article-body ol { padding-left: 1.5rem; }
.article-body ul li, .article-body ol li {
  margin-bottom: .4rem;
  color: var(--text-muted);
}
.article-body p { color: var(--text-muted); }
.article-back {
  margin-bottom: 1.25rem;
}

/* ── 19. Media Placeholders ───────────────────────────────── */
.img-ph {
  border-radius: var(--radius);
  background: linear-gradient(135deg, #EDE1CE 0%, #D4B48A 40%, #C4896A 100%);
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  min-height: 240px;
  position: relative;
  overflow: hidden;
}
.img-ph::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,.08) 39px, rgba(255,255,255,.08) 40px),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,.08) 39px, rgba(255,255,255,.08) 40px);
}
.img-ph-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  padding: 1.5rem;
  text-align: center;
}
.img-ph-inner svg {
  width: 40px;
  height: 40px;
  color: rgba(255,255,255,.6);
}
.img-ph-inner span {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.75);
  max-width: 22ch;
  line-height: 1.4;
}
.img-ph--portrait { aspect-ratio: 4 / 5; min-height: unset; }
.img-ph--hero { min-height: 320px; }
.img-ph--card { aspect-ratio: 16 / 9; min-height: unset; }

/* ── 20. CTA Strip ────────────────────────────────────────── */
.cta-strip {
  background: var(--gold-bg);
  color: var(--text);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-strip h2 {
  color: var(--text);
  margin-bottom: .5rem;
}
.cta-strip p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}
.cta-strip .btn {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 16px rgba(216,108,151,.3);
}
.cta-strip .btn:hover {
  background: var(--pink-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(216,108,151,.45);
}
.cta-strip .btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--text-muted);
}
.cta-strip .btn-secondary:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ── 21. Footer ───────────────────────────────────────────── */
.site-footer {
  background: #1A1A1A;
  color: rgba(255,255,255,.75);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: #fff;
  font-weight: 800;
  margin-bottom: .85rem;
}
.footer-brand .logo-badge {
  background: linear-gradient(135deg, #48C2E0 0%, #2EA3C5 100%);
}
.footer-brand:hover { color: var(--accent-light); }

.footer-tagline {
  font-size: .88rem;
  line-height: 1.6;
  max-width: 30ch;
  margin-bottom: 1.25rem;
}

.social-links {
  display: flex;
  gap: .6rem;
}
.social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.7);
  text-decoration: none;
  transition: background .2s, color .2s;
}
.social-link:hover {
  background: var(--pink);
  color: #fff;
}
.social-link svg { width: 16px; height: 16px; }

.footer-col-label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.68);
  margin-bottom: 1rem;
}
.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-nav-list a {
  color: rgba(255,255,255,.7);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s;
}
.footer-nav-list a:hover { color: #fff; }
.footer-nav-list a[aria-current="page"] { color: var(--pink-mid); }

.footer-contact-item {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .88rem;
  margin-bottom: .65rem;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; color: var(--accent-light); }
.footer-contact-item a { color: rgba(255,255,255,.75); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.footer-copy {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
}
.footer-legal {
  display: flex;
  gap: 1.25rem;
}
.footer-legal a {
  font-size: .82rem;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  transition: color .2s;
}
.footer-legal a:hover { color: #fff; }

/* ── 22. Utilities ────────────────────────────────────────── */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ── 23. Responsive ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --section-y: 3.5rem;
  }

  /* Nav collapse */
  .primary-nav,
  .header-inner > .nav-cta { display: none; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { padding: 3rem 0 2rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
  }

  /* Grids */
  .services-grid       { grid-template-columns: 1fr; }
  .testimonials-grid   { grid-template-columns: 1fr; }
  .pricing-grid        { grid-template-columns: 1fr; }
  .pricing-specialty   { grid-template-columns: 1fr; }
  .about-grid          { grid-template-columns: 1fr; }
  .contact-grid        { grid-template-columns: 1fr; }
  .footer-grid         { grid-template-columns: 1fr; }

  /* Trust strip */
  .trust-divider { display: none; }
  .trust-strip-inner { gap: 1.5rem 2rem; }

  /* Footer */
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: .5rem; }
}

@media (max-width: 480px) {
  .hero-media-grid { grid-template-columns: 1fr; }
  .btn-row { flex-direction: column; }
  .btn, .btn-secondary { justify-content: center; }
}

/* ── 24. Reduced Motion ───────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   ── 25. PREMIUM / CINEMATIC OVERRIDES ─────────────────────
   ============================================================ */

/* ── Split Hero (full-bleed, dark + image) ───────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 45fr 55fr;
  min-height: calc(100svh - 62px);
}

.hero-panel-dark {
  background: var(--dark-teal);
  display: flex;
  align-items: center;
  padding: 5rem 4.5rem;
}

.hero-panel-content {
  max-width: 540px;
}

.hero-panel-image {
  position: relative;
  overflow: hidden;
  background: var(--dark-teal-2);
}

/* ── Cinematic image fill (absolute inside relative parent) ─ */
.img-ph--fill {
  position: absolute;
  inset: 0;
  height: 100%;
  min-height: unset;
  border-radius: 0;
  background:
    linear-gradient(to bottom, transparent 45%, rgba(10,7,4,.7) 100%),
    linear-gradient(155deg, #3D2515 0%, #1F130A 45%, #0D0806 100%);
}

.img-ph--fill::after {
  content: '';
  position: absolute;
  inset: 24px;
  border: 1px solid rgba(255,255,255,.055);
  pointer-events: none;
}

.img-ph--fill .img-ph-inner {
  position: absolute;
  bottom: 2rem;
  left: 2.25rem;
  right: 2.25rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  gap: 0;
}

.img-ph--fill .img-ph-inner svg {
  width: 22px;
  height: 22px;
  color: rgba(255,255,255,.2);
}

.img-ph--fill .img-ph-inner span {
  font-size: .65rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  max-width: unset;
  line-height: 1;
}

/* ── Cinematic standalone placeholders ───────────────────── */
.img-ph--cinema {
  background:
    linear-gradient(to bottom, transparent 50%, rgba(10,7,4,.6) 100%),
    linear-gradient(155deg, #3D2515 0%, #1F130A 45%, #0D0806 100%);
  position: relative;
}

.img-ph--cinema::after {
  content: '';
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(255,255,255,.05);
  border-radius: calc(var(--radius) - 6px);
  pointer-events: none;
}

.img-ph--cinema .img-ph-inner {
  position: absolute;
  bottom: 1.5rem;
  left: 1.75rem;
  right: 1.75rem;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0;
  gap: 0;
}

.img-ph--cinema .img-ph-inner svg {
  color: rgba(255,255,255,.18);
  width: 22px;
  height: 22px;
}

.img-ph--cinema .img-ph-inner span {
  font-size: .62rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(255,255,255,.28);
  max-width: unset;
  border: 1px solid rgba(255,255,255,.1);
  padding: .28rem .6rem;
  border-radius: 3px;
  line-height: 1;
}

/* ── Portrait with editorial bg blob ─────────────────────── */
.portrait-editorial {
  position: relative;
}

.portrait-editorial::before {
  content: '';
  position: absolute;
  width: 85%;
  height: 85%;
  border-radius: 50%;
  background: var(--surface-3);
  top: 8%;
  left: -8%;
  z-index: 0;
}

.portrait-editorial .img-ph {
  position: relative;
  z-index: 1;
}

/* ── Text on dark backgrounds ────────────────────────────── */
.on-dark           { color: #fff; }
.eyebrow.eyebrow--light { color: #1C1917 !important; }
.lead--light       { color: rgba(255,255,255,.92); }

/* Eyebrow with inline leading rule */
.eyebrow--rule {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
}
.eyebrow--rule::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: currentColor;
  flex-shrink: 0;
}

/* ── Buttons for teal backgrounds ────────────────────────── */
.btn--inverse {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 4px 20px rgba(216,108,151,.35);
}
.btn--inverse:hover {
  background: var(--pink-dark);
  color: #fff;
  box-shadow: 0 6px 20px rgba(216,108,151,.5);
}

.btn-ghost {
  background: #fff;
  color: var(--text);
  border: 2px solid #fff;
}
.btn-ghost:hover {
  background: var(--pink);
  color: #fff;
  border-color: var(--pink);
}

/* ── Hero inline stats ───────────────────────────────────── */
.hero-stats {
  display: flex;
  gap: 2.25rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.2);
  flex-wrap: wrap;
}

.hero-stat-val {
  display: block;
  font-size: 1.65rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: .2rem;
  letter-spacing: -.02em;
}

.hero-stat-lbl {
  font-size: .68rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── Dark section ────────────────────────────────────────── */
.section--dark {
  background: var(--dark-teal);
  color: #fff;
}
.section--dark h2,
.section--dark h3 { color: #fff; }
.section--dark .eyebrow { color: #1C1917; }
.section--dark .lead    { color: rgba(255,255,255,.92); }

.section--dark .quote-card {
  background: var(--pink-light);
  border-color: rgba(216,108,151,.15);
}
.section--dark .quote-card blockquote { color: var(--text); }
.section--dark .quote-card::before    { color: var(--pink); opacity: .3; }
.section--dark .quote-author-name     { color: var(--text); }
.section--dark .quote-author-loc      { color: #5C5248; }

/* ── Service card hover accent ───────────────────────────── */
.service-card {
  border-left: 3px solid transparent;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover { border-left-color: var(--accent); }

/* ── Outlined step numbers (services process) ────────────── */
.step-num-outline {
  display: block;
  font-size: 3.25rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1;
  margin-bottom: .5rem;
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

/* ── Decorative section rule ─────────────────────────────── */
.section-rule {
  width: 48px;
  height: 3px;
  background: var(--accent);
  border: none;
  margin: 0 0 1.5rem;
}

/* ── Responsive split hero ───────────────────────────────── */
@media (max-width: 960px) {
  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-panel-dark {
    padding: 3.5rem 1.75rem;
  }
  .hero-panel-image {
    min-height: 360px;
  }
}

@media (max-width: 600px) {
  .hero-panel-image { min-height: 280px; }
  .hero-panel-dark  { padding: 2.75rem 1.25rem; }
  .hero-stats       { gap: 1.5rem; }
}

/* ── Pink accents ────────────────────────────────────────── */
/* Quote marks */
.quote-card::before { color: var(--pink); opacity: .4; }

/* Social hover */
.social-link:hover { background: var(--pink); color: #fff; }

/* Section rule pink variant */
.section-rule--pink { background: var(--pink); }

/* Pink-tinted section background */
.section--pink-tint { background: var(--pink-light); }
.section--pink-tint .eyebrow { color: var(--pink); }

/* Eyebrow pink variant */
.eyebrow--pink { color: var(--pink); }

/* Price badge override — pink */
.price-badge { background: var(--pink); }

/* Featured card pink border */
.price-card--featured {
  border-color: var(--pink);
}
.price-card--featured ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4758C'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
}
.price-card--featured .price-amount { color: var(--pink); }

/* ── Video Section ───────────────────────────────────────── */
.video-section {
  background: var(--dark-teal-2);
  padding: var(--section-y) 0;
}
.video-section .section-header { margin-bottom: 2.5rem; }

.video-wrap {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.15);
  background: var(--dark-teal);
}

.video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Placeholder shown until real video is dropped in */
.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  background:
    linear-gradient(to bottom, transparent 40%, rgba(10,7,4,.55) 100%),
    linear-gradient(155deg, #2C1D14 0%, #1A100A 50%, #0E0806 100%);
}
.video-placeholder-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196,117,140,.12);
  border: 2px solid rgba(196,117,140,.35);
  display: grid;
  place-items: center;
  color: var(--pink-mid);
}
.video-placeholder-icon svg { width: 34px; height: 34px; }
.video-placeholder p {
  font-size: .7rem;
  color: rgba(255,255,255,.28);
  letter-spacing: .14em;
  text-transform: uppercase;
  margin: 0;
}

/* Sound toggle button */
.video-sound-btn {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  background: rgba(8,6,4,.65);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius-pill);
  color: rgba(255,255,255,.88);
  padding: .55rem 1.1rem;
  font-size: .78rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  gap: .5rem;
  transition: background .2s, border-color .2s;
  letter-spacing: .02em;
}
.video-sound-btn:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.35);
}
.video-sound-btn svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ============================================================
   ── 26. REAL ASSETS ────────────────────────────────────────
   ============================================================ */

/* Header / footer logo image */
.site-logo {
  height: 88px;
  width: auto;
  display: block;
}

.footer-brand .site-logo {
  filter: brightness(0) invert(1);
  opacity: .9;
  height: 44px;
}

/* Hero panel photo (Brittany headshot fills the right panel) */
.hero-panel-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

/* About page portrait */
.about-portrait {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* ============================================================
   ── 27. PINK EXPANSION ─────────────────────────────────────
   Spreads the pink accent throughout the whole site.
   ============================================================ */

/* All eyebrow labels go pink */
.eyebrow { color: var(--pink); }

/* Eyebrow on tinted backgrounds */
.section--dark .eyebrow { color: #1C1917; }

/* Default section decorative rule — pink */
.section-rule { background: var(--pink); }

/* Hero inline stats — gold numbers */
.hero-stat-val { color: var(--gold-bg); }

/* Service card hover — pink left accent bar */
.service-card:hover { border-left-color: var(--pink); }

/* Service icon — pink tint on hover */
.service-card:hover .service-icon {
  background: var(--pink-light);
  color: var(--pink);
}

/* Outlined step numbers — pink stroke */
.step-num-outline { -webkit-text-stroke-color: var(--pink); }

/* Quote card avatars — pink gradient (text initials fallback) */
.quote-avatar {
  background: linear-gradient(135deg, var(--pink-mid), var(--pink));
}
/* Image avatars: no gradient background */
img.quote-avatar {
  background: #fff;
}

/* Quote marks on tinted section */
.section--dark .quote-card::before { color: var(--gold-bg); opacity: .4; }

/* Credential dots — pink */
.cred-dot { background: var(--pink); }

/* Blog tags — pink pill */
.blog-card-tag {
  color: var(--pink);
  background: var(--pink-light);
}
.blog-card h2 a:hover { color: var(--pink); }

/* Form focus border — pink */
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(196, 117, 140, .14);
}

/* Form required asterisk — pink */
.form-field label abbr { color: var(--pink); }

/* Footer contact icons — pink */
.footer-contact-item svg { color: var(--pink-mid); }

/* Footer nav active link — pink */
.footer-nav-list a[aria-current="page"] { color: var(--pink-mid); }

/* About page portrait blob — soft pink */
.portrait-editorial::before { background: var(--pink-light); }

/* Price card list checkmarks — pink for all cards */
.price-card ul li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C4758C'%3E%3Cpath d='M13.78 4.22a.75.75 0 0 1 0 1.06l-7.25 7.25a.75.75 0 0 1-1.06 0L2.22 9.28a.75.75 0 0 1 1.06-1.06L6 10.94l6.72-6.72a.75.75 0 0 1 1.06 0z'/%3E%3C/svg%3E");
}

/* Nav active link — pink underline dot */
.nav-list a[aria-current="page"] {
  color: var(--pink);
  background: var(--pink-light);
}
.nav-list a:hover { color: var(--pink); }

/* ============================================================
   ── 28. SPLASH SCREEN ──────────────────────────────────────
   ============================================================ */
#splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark-teal);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  /* fade out after 2.6s, over 0.7s */
  animation: splash-exit 0.7s cubic-bezier(.4,0,.2,1) 2.6s forwards;
}

/* Lock scroll while splash is up */
body.splash-active { overflow: hidden; }

/* Logo — white, growing, subtle pink drop-shadow */
.splash-logo {
  position: relative;
  z-index: 1;
  height: 200px;
  width: auto;
  filter: brightness(0) invert(1) drop-shadow(0 0 32px rgba(196,117,140,.32));
  animation: splash-grow 3.3s ease-in forwards;
  transform-origin: center center;
}

/* Tagline — fades in gently, no oscillation */
.splash-tagline {
  position: relative;
  z-index: 1;
  color: var(--pink);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  opacity: 0;
  margin: 0;
  animation: splash-tagline-in 0.8s ease-out 0.5s forwards;
}

/* Logo grows continuously — exit fires mid-growth for "jumps to page" feel */
@keyframes splash-grow {
  from { transform: scale(0.72); }
  to   { transform: scale(1.9); }
}

@keyframes splash-tagline-in {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: .7; transform: translateY(0); }
}

@keyframes splash-exit {
  to { opacity: 0; visibility: hidden; pointer-events: none; }
}

@media (prefers-reduced-motion: reduce) {
  #splash, .splash-logo, .splash-tagline {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* ============================================================
   ── 29. ORBIT SERVICES ─────────────────────────────────────
   ============================================================ */

.orbit-section { background: var(--bg); }

.orbit-layout {
  display: grid;
  grid-template-columns: 540px 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}

/* Scene */
.orbit-scene {
  position: relative;
  width: 520px;
  height: 520px;
  flex-shrink: 0;
}

/* Decorative rings */
.orbit-ring {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  pointer-events: none;
}
.orbit-ring--outer {
  width: 400px; height: 400px;
  border: 1px solid rgba(45,175,212,.22);
  animation: orbit-ring-cw 80s linear infinite;
}
.orbit-ring--mid { display: none; }

@keyframes orbit-ring-cw  { to { transform: translate(-50%,-50%) rotate(360deg);  } }
@keyframes orbit-ring-ccw { to { transform: translate(-50%,-50%) rotate(-360deg); } }

/* Center logo */
.orbit-center {
  position: absolute;
  top: 50%; left: 50%;
  width: 180px; height: 180px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--accent);
  box-shadow:
    0 0 0 6px rgba(45,175,212,.12),
    0 0 0 14px rgba(45,175,212,.05),
    var(--shadow-lg);
  z-index: 2;
  cursor: pointer;
  background: var(--gold-bg);
  padding: 0;
  transition: transform .2s, box-shadow .2s;
}
.orbit-center:hover {
  transform: translate(-50%, -50%) scale(1.04);
  box-shadow:
    0 0 0 6px rgba(45,175,212,.22),
    0 0 0 18px rgba(45,175,212,.08),
    var(--shadow-lg);
}
.orbit-center img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 18px;
  display: block;
}
.orbit-center-hint {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: rgba(139, 77, 47, .82);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: .3rem 0;
  opacity: 0;
  transition: opacity .2s;
}
.orbit-center:hover .orbit-center-hint { opacity: 1; }

/* ── Services All Modal ──────────────────────────────────── */
.svc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
}
.svc-modal.is-open { display: block; }
.svc-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.svc-modal-scroll {
  position: absolute;
  inset: 0;
  overflow-y: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 2.5rem 1rem 3rem;
}
.svc-modal-panel {
  background: var(--surface);
  border-radius: var(--radius-lg);
  max-width: 940px;
  width: 100%;
  padding: 2.5rem 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow-lg);
  animation: svcModalIn .22s ease-out;
}
@keyframes svcModalIn {
  from { opacity: 0; transform: translateY(14px) scale(.98); }
  to   { opacity: 1; transform: none; }
}
.svc-modal-close {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--text-muted);
  transition: border-color .15s, color .15s;
}
.svc-modal-close:hover { border-color: var(--accent); color: var(--accent); }
.svc-modal-heading {
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 .3rem;
  padding-right: 2.5rem;
}
.svc-modal-sub {
  color: var(--text-muted);
  margin: 0 0 2rem;
  font-size: .95rem;
}
.svc-modal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.svc-modal-card {
  background: var(--bg);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem 1.25rem;
  transition: border-color .2s, box-shadow .2s;
}
.svc-modal-card:hover {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(216,108,151,.12);
}
.svc-modal-card-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FDF2F5 0%, #F8DDE5 100%);
  display: grid;
  place-items: center;
  margin-bottom: .85rem;
  overflow: hidden;
}
.svc-modal-card-icon svg { width: 20px; height: 20px; }
.svc-modal-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 .4rem;
}
.svc-modal-card p {
  font-size: .875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 680px) {
  .svc-modal-grid { grid-template-columns: 1fr 1fr; }
  .svc-modal-panel { padding: 1.75rem 1.25rem; }
}
@media (max-width: 420px) {
  .svc-modal-grid { grid-template-columns: 1fr; }
}

/* Orbit nodes */
.orbit-node {
  position: absolute;
  top: 50%; left: 50%;
  width: 92px; height: 92px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  z-index: 3;
}
.orbit-node-inner {
  width: 100%; height: 100%;
  border-radius: 50%;
  background: var(--gold-bg);
  border: 2px solid var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .22s, border-color .22s, box-shadow .22s, transform .22s;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.orbit-node-inner img {
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 10px;
  display: block;
}

.orbit-node.is-active .orbit-node-inner,
.orbit-node:hover    .orbit-node-inner,
.orbit-node:focus-visible .orbit-node-inner {
  background: var(--pink-light);
  border-color: var(--pink);
  box-shadow: 0 0 0 5px rgba(216,108,151,.18), var(--shadow);
  transform: scale(1.18);
}
.orbit-node:focus-visible { outline: 2px solid var(--focus); outline-offset: 3px; border-radius: 50%; }

/* Detail panel */
.orbit-detail { min-height: 220px; }

.orbit-detail-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pink);
  background: var(--pink-light);
  padding: .3rem .8rem;
  border-radius: var(--radius-pill);
  margin-bottom: 1.1rem;
}

.orbit-detail-title {
  font-size: 1.65rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin: 0 0 .8rem;
}

.orbit-detail-desc {
  color: var(--text-muted);
  line-height: 1.75;
  margin: 0 0 1.75rem;
  font-size: .95rem;
}

.orbit-detail-dots {
  display: flex;
  gap: .4rem;
  margin-bottom: 1.5rem;
}
.orbit-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.orbit-dot.is-active { background: var(--pink); transform: scale(1.3); }

/* Fade transition */
.orbit-detail-title,
.orbit-detail-desc {
  transition: opacity .18s ease;
}
.orbit-detail--switching .orbit-detail-title,
.orbit-detail--switching .orbit-detail-desc { opacity: 0; }

/* Mobile: hide orbit, show grid */
.orbit-mobile { display: none; }
.orbit-lead--mobile { display: none; }

@media (max-width: 880px) {
  .orbit-layout { display: none; }
  .orbit-mobile  { display: grid; }
  .orbit-lead--desktop { display: none; }
  .orbit-lead--mobile  { display: block; }
}

@media (prefers-reduced-motion: reduce) {
  .orbit-ring--outer,
  .orbit-ring--mid { animation: none; }
}

/* ── Contact Modal ────────────────────────────────────────── */
.cmodal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.cmodal.is-open { display: flex; }

.cmodal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(28, 25, 23, .55);
  backdrop-filter: blur(3px);
  animation: cmodalFadeIn .2s ease;
}

.cmodal-panel {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 540px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem 2rem 2rem;
  animation: cmodalSlideUp .22s ease;
}

.cmodal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  background: var(--surface);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s, color .15s;
}

.cmodal-close:hover {
  background: var(--surface-2);
  color: var(--text);
}

@keyframes cmodalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

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

@media (max-width: 580px) {
  .cmodal-panel {
    padding: 2rem 1.25rem 1.5rem;
    border-radius: var(--radius);
  }
}

/* ── FAQ Page ────────────────────────────────────────────── */
.faq-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 4rem;
  /* default stretch — sidebar wrapper fills full row height so sticky works */
}

.faq-groups { align-self: start; }

/* Wrapper stretches to full grid row height, nav sticks inside it */
.faq-cat-wrap { /* stretches by default */ }

/* Sidebar category nav — minimal left-rail style */
.faq-cat-nav {
  position: sticky;
  top: 13rem;
}

.faq-cat-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: .6;
  margin: 0 0 1rem 1.1rem;
}

.faq-cat-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid var(--pink-light);
}

.faq-cat-nav li { margin: 0; }

.faq-cat-nav a {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  padding: .55rem 0 .55rem 1.1rem;
  border-left: 2px solid transparent;
  margin-left: -2px;
  transition: color .15s, border-color .15s, background .15s;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.faq-cat-nav a:hover,
.faq-cat-nav a:focus-visible {
  color: var(--pink);
  border-left-color: var(--pink);
  background: var(--pink-light);
}

/* FAQ groups */
.faq-groups {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.faq-group-title {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin: 0 0 1.25rem;
}

.faq-group-icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
  opacity: .9;
}

/* Accordion items */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  background: var(--surface);
  margin-bottom: .6rem;
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
}

.faq-item:last-child { margin-bottom: 0; }

.faq-item[open] {
  box-shadow: var(--shadow);
  border-color: var(--border);
  border-left: 3px solid var(--accent-light);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question:hover { color: var(--pink); }

.faq-question:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: -3px;
  border-radius: var(--radius-sm);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--pink);
  transition: transform .2s ease;
}

.faq-item[open] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.25rem 1rem;
  font-size: .9rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.faq-answer p { margin: 0 0 .6rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul {
  margin: .4rem 0 .6rem 1.2rem;
  padding: 0;
}
.faq-answer li { margin-bottom: .25rem; }

/* Responsive */
@media (max-width: 760px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-cat-nav {
    position: static;
    border-left: none;
    padding-bottom: .5rem;
  }
  .faq-cat-label { display: none; }
  .faq-cat-nav ul {
    border-left: none;
    display: flex;
    flex-wrap: wrap;
    gap: .4rem;
  }
  .faq-cat-nav a {
    font-size: .8rem;
    padding: .35rem .85rem;
    border-left: none;
    border: 1px solid var(--border);
    border-radius: var(--radius-pill);
    background: var(--surface);
    margin-left: 0;
  }
  .faq-cat-nav a:hover,
  .faq-cat-nav a:focus-visible {
    background: var(--surface-2);
    border-color: var(--accent-light);
    border-left-color: var(--accent-light);
  }
}
