/* ============================================================
   Kearney Visser Theme — Compiled Front-end Stylesheet
   assets/css/main.css

   Design tokens (colors, fonts) are declared as CSS custom properties
   below as static fallbacks, then OVERRIDDEN at runtime by an inline
   <style id="kv-dynamic-colors"> block injected in wp_head (see
   inc/acf-fields-options.php) whenever the client changes a color or
   font in Theme Options. That's what makes color changes instant with
   no rebuild step.
   ============================================================ */

/* ============================================================
   Dr. Kearney N. Visser — Shared Stylesheet
   style.css  |  © 2026 All rights reserved
   ============================================================ */

/* ── VARIABLES ─────────────────────────────────────────── */
:root {
  --cream: #F9F5EF;
  --warm-white: #FDFAF6;
  --sage: #7A9E7E;
  --sage-light: #A8C4AB;
  --sage-dark: #4D7A52;
  --terracotta: #C4765A;
  --terracotta-light: #E8A98F;
  --charcoal: #2C2C2C;
  --mid-gray: #6B6B6B;
  --light-gray: #E8E4DE;
  --border: #DDD8D0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 72px;
}

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
/* Safety-net default: WordPress image tags carry explicit width/height
   HTML attributes matching their registered crop size, which would
   otherwise render at native size regardless of a smaller responsive
   parent. Specific containers (hero images, cards, logos) override this
   with their own more specific object-fit rule; this is only the floor
   that keeps any image — including ones added to a field later without
   a matching container rule — from overflowing its container. */
img { max-width: 100%; height: auto; display: block; }
body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── NAVIGATION ─────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(245,249,253,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.07); }
.nav-brand {
  font-family: var(--font-display); font-weight: 400; font-size: 1.05rem;
  letter-spacing: 0.04em; color: var(--charcoal); text-decoration: none; line-height: 1.3;
}
.nav-brand span {
  display: block; font-size: 0.7rem; font-family: var(--font-body);
  letter-spacing: 0.12em; color: var(--mid-gray); text-transform: uppercase; font-weight: 400;
}
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a {
  font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--mid-gray); text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--sage-dark); }
.nav-cta {
  background: var(--sage); color: white !important;
  padding: 0.5rem 1.25rem; border-radius: 2px;
  font-size: 0.75rem !important; letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--sage-dark) !important; color: white !important; }
.nav-cta.active { background: var(--sage-dark) !important; }

/* ── HAMBURGER ───────────────────────────────────────────── */
.hamburger {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; padding: 8px;
  border: none; background: none; z-index: 200;
}
.hamburger span {
  display: block; height: 1.5px; background: var(--charcoal);
  transition: transform 0.35s cubic-bezier(0.23,1,0.32,1),
              opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}
.hamburger span:nth-child(1) { width: 24px; }
.hamburger span:nth-child(2) { width: 18px; }
.hamburger span:nth-child(3) { width: 24px; }
.hamburger.open span:nth-child(1) { width: 24px; transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.hamburger.open span:nth-child(3) { width: 24px; transform: translateY(-6.5px) rotate(-45deg); }

/* ── MOBILE MENU — full screen overlay ──────────────────── */
.mobile-menu {
  display: block;
  position: fixed; inset: 0;
  z-index: 150;
  background: var(--charcoal);
  overflow: hidden;
  clip-path: circle(0% at calc(100% - 44px) 36px);
  transition: clip-path 0.55s cubic-bezier(0.77,0,0.175,1);
  pointer-events: none;
}
.mobile-menu.open {
  clip-path: circle(150% at calc(100% - 44px) 36px);
  pointer-events: all;
}
.mobile-menu-inner {
  display: flex; flex-direction: column;
  height: 100%; padding: calc(var(--nav-h) + 1.5rem) 8% 3rem;
  justify-content: center;
}
.mobile-menu a {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(1.8rem, 6vw, 2.8rem);
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  opacity: 0; transform: translateY(18px);
  transition: color 0.2s ease, opacity 0.4s ease,
              transform 0.4s cubic-bezier(0.23,1,0.32,1);
}
.mobile-menu.open a { opacity: 1; transform: translateY(0); }
.mobile-menu a:nth-child(1) { transition-delay: 0.18s; }
.mobile-menu a:nth-child(2) { transition-delay: 0.23s; }
.mobile-menu a:nth-child(3) { transition-delay: 0.28s; }
.mobile-menu a:nth-child(4) { transition-delay: 0.33s; }
.mobile-menu a:nth-child(5) { transition-delay: 0.38s; }
.mobile-menu a:nth-child(6) { transition-delay: 0.43s; }
.mobile-menu a:nth-child(7) { transition-delay: 0.48s; }
.mobile-menu a:hover { color: white; }
.mobile-menu a:hover .mob-arrow { transform: translateX(6px); color: var(--sage); }
.mob-arrow {
  font-size: 1.1rem; color: rgba(255,255,255,0.15);
  transition: transform 0.2s ease, color 0.2s;
  font-family: var(--font-body); font-style: normal;
}
.mobile-menu a:last-child {
  margin-top: 1.5rem; border-bottom: none;
  background: var(--sage); color: white !important;
  padding: 1rem 1.5rem; border-radius: 2px;
  font-size: 0.95rem; letter-spacing: 0.08em;
  justify-content: center; font-family: var(--font-body);
  font-weight: 500; text-transform: uppercase;
  transition-delay: 0.52s; opacity: 0; transform: translateY(18px);
}
.mobile-menu.open a:last-child { opacity: 1; transform: translateY(0); }
.mobile-menu a:last-child:hover { background: var(--sage-dark) !important; }
.mobile-menu a:last-child .mob-arrow { display: none; }
.mobile-menu-close {
  position: absolute; top: 1.25rem; right: 5%;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.4); font-size: 1.4rem;
  padding: 0.5rem; transition: color 0.2s, opacity 0.3s 0.1s;
  opacity: 0;
}
.mobile-menu.open .mobile-menu-close { opacity: 1; }
.mobile-menu-close:hover { color: white; }
.mobile-menu-footer {
  margin-top: auto; padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.07);
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(10px);
  transition: opacity 0.4s ease 0.55s, transform 0.4s ease 0.55s;
}
.mobile-menu.open .mobile-menu-footer { opacity: 1; transform: translateY(0); }
.mobile-menu-footer a {
  font-size: 0.72rem !important; color: rgba(255,255,255,0.3) !important;
  font-family: var(--font-body) !important; font-weight: 300 !important;
  letter-spacing: 0.06em; text-transform: uppercase;
  border: none !important; padding: 0 !important; margin: 0 !important;
  opacity: 1 !important; transform: none !important;
  transition: color 0.2s !important; transition-delay: 0s !important;
  font-size: clamp(1.8rem,6vw,2.8rem) !important;
  /* reset font size override */
  font-size: 0.72rem !important;
}
.mobile-menu-footer a:hover { color: rgba(255,255,255,0.7) !important; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--charcoal); margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--sage-dark); }
h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300; line-height: 1.15; margin-bottom: 1.25rem;
}
h2 em { font-style: italic; color: var(--sage-dark); }
.section-label {
  font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before { content: ''; display: block; width: 1.5rem; height: 1px; background: var(--terracotta); }
.section-intro { font-size: 1rem; color: var(--mid-gray); max-width: 600px; line-height: 1.85; }
.page-eyebrow {
  font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--terracotta); margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.page-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--terracotta); }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--terracotta); color: white;
  padding: 0.9rem 2rem; text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500;
  border-radius: 2px; transition: all 0.25s; border: none; cursor: pointer;
}
.btn-primary:hover {
  background: #b36347; transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(196,118,90,0.3);
}
.btn-primary svg { transition: transform 0.2s; }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.75rem;
  border: 1px solid var(--charcoal); color: var(--charcoal);
  padding: 0.9rem 2rem; text-decoration: none;
  font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-family: var(--font-body); font-weight: 500;
  border-radius: 2px; transition: all 0.25s; cursor: pointer; background: transparent;
}
.btn-outline:hover { background: var(--charcoal); color: white; }

/* ── SECTION PADDING ────────────────────────────────────── */
section { padding: 6rem 8%; }

/* ── PAGE HERO (inner pages — split grid) ───────────────── */
.page-hero-text {
  display: flex; flex-direction: column; justify-content: center;
  padding: 5rem 5% 5rem 8%;
}
.page-hero-sub {
  font-size: 1rem; color: var(--mid-gray); max-width: 440px; line-height: 1.85; margin-bottom: 2rem;
}
.page-hero-img { position: relative; overflow: hidden; }
.page-hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top;
  filter: brightness(0.88) saturate(0.85);
}
.page-hero-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(238,244,250,0.35) 0%, transparent 40%);
}

/* ── FULL-BLEED PHOTO HERO (credentials, contact) ───────── */
.page-hero--fullbleed {
  padding-top: var(--nav-h);
  position: relative; min-height: 56vh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
  filter: brightness(0.55) saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(44,44,44,0.92) 0%, rgba(44,44,44,0.55) 40%, rgba(44,44,44,0.2) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 5rem 8% 4.5rem; width: 100%;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem; align-items: flex-end;
}
.hero-content h1 { color: white; }
.hero-content h1 em { color: var(--sage-light); }

/* ── FOOTER ─────────────────────────────────────────────── */
footer {
  background: var(--charcoal); color: rgba(255,255,255,0.5);
  padding: 3rem 8%;
  display: grid; grid-template-columns: 1fr auto;
  gap: 2rem; align-items: center; font-size: 0.8rem;
}
.footer-brand {
  font-family: var(--font-display); font-size: 1rem; font-weight: 300;
  color: rgba(255,255,255,0.85); margin-bottom: 0.25rem;
}
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-top: 0.75rem; }
.footer-links a {
  color: rgba(255,255,255,0.4); text-decoration: none;
  font-size: 0.72rem; letter-spacing: 0.08em; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-right { text-align: right; }
.footer-right a { color: rgba(255,255,255,0.4); text-decoration: none; }

/* ── FADE-UP ANIMATION ──────────────────────────────────── */
.fade-up {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ── ADMIN-ONLY FORM NOTICES (Contact page) ─────────────────
   Used by both the Hushmail and Gravity Forms render paths in
   inc/gravity-forms.php. Kept here (not in gravity-forms.css)
   because that stylesheet only loads via the gform_enqueue_scripts
   hook, which never fires when Hushmail is the active form source
   — this rule needs to be available on every page load regardless. */
.kv-form-notice {
  background: #fdf1ee;
  border: 1px dashed var(--terracotta-light);
  border-radius: 2px;
  padding: 1.25rem 1.5rem;
  font-size: 0.85rem;
  color: var(--charcoal);
}

/* ── GENERIC PAGE FALLBACK (page.php — pages with no dedicated
   template, e.g. Privacy Policy. No matching design existed in the
   original static build, so this is new, intentionally minimal. ── */
.generic-content-section { padding: 4rem 8% 6rem; }
.generic-content {
  max-width: 760px; margin: 0 auto;
  font-size: 0.98rem; color: var(--charcoal); line-height: 1.9;
}
.generic-content h2, .generic-content h3 {
  font-family: var(--font-display); font-weight: 400; margin: 2rem 0 1rem;
}
.generic-content p { margin-bottom: 1.25rem; }
.generic-content ul, .generic-content ol { margin: 0 0 1.25rem 1.5rem; }
.generic-content a { color: var(--sage-dark); }

/* ── BLOG LISTING FALLBACK (index.php — only used if the client ever
   enables standard WP posts. No original design existed for this. ── */
.index-list { max-width: 760px; margin: 0 auto; padding: 2rem 8% 6rem; }
.index-list article { margin-bottom: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.index-list h2 { font-size: 1.6rem; margin-bottom: 0.75rem; }
.index-list h2 a { color: var(--charcoal); text-decoration: none; }
.index-list h2 a:hover { color: var(--sage-dark); }

/* ── RESPONSIVE — SHARED ────────────────────────────────── */
/* ── NAV — switch to hamburger below 1200px ─────────────── */
@media (max-width: 1200px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
}

@media (max-width: 960px) {
  section { padding: 4.5rem 6%; }
  footer { grid-template-columns: 1fr; }
  .footer-right { text-align: left; }
  .footer-links { gap: 1rem; }
  .page-hero-text { padding: 3.5rem 6%; }
  .hero-content { grid-template-columns: 1fr; padding: 4rem 6% 3.5rem; }
}
@media (max-width: 640px) {
  section { padding: 3.5rem 5%; }
  h1 { font-size: 2.5rem; }
  h2 { font-size: 1.8rem; }
  footer { padding: 2.5rem 5%; }
  .footer-links { gap: 0.75rem; }
  .footer-links a { font-size: 0.68rem; }
  .page-hero-text { padding: 3rem 5%; }
}
@media (max-width: 400px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.6rem; }
  section { padding: 3rem 4%; }
}

/* ── RESPONSIVE — INNER PAGE HEROES ────────────────────── */
@media (max-width: 960px) {
  .page-hero { grid-template-columns: 1fr !important; }
  .page-hero-img { min-height: 55vw; order: -1; }
}
@media (max-width: 640px) {
  .page-hero-img { min-height: 65vw; }
  .hero-content { padding: 3rem 5% 3rem; }
}

/* ── RESPONSIVE — CREDENTIALS ──────────────────────────── */
@media (max-width: 960px) {
  .edu-grid { grid-template-columns: 1fr; gap: 3rem; }
  .exp-cards { grid-template-columns: 1fr 1fr; }
  .honors-grid { grid-template-columns: 1fr 1fr; }
  .assoc-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .advisory-grid { grid-template-columns: 1fr; }
  .photo-break { height: 320px; }
}
@media (max-width: 640px) {
  .exp-cards { grid-template-columns: 1fr; }
  .honors-grid { grid-template-columns: 1fr; }
  .assoc-grid { grid-template-columns: 1fr; }
  .photo-break { height: 240px; }
  .hero-license-badge { display: none; }
  .stat-item { padding: 1rem; }
}

/* ── RESPONSIVE — FEES ──────────────────────────────────── */
@media (max-width: 960px) {
  .sessions-grid { grid-template-columns: 1fr 1fr; }
  .insurance-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .goodfaith-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6%; }
  .consult-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6%; }
}
@media (max-width: 640px) {
  .sessions-grid { grid-template-columns: 1fr; }
  .consult-actions { flex-direction: column; }
}

/* ── RESPONSIVE — ACCREDITATION ─────────────────────────── */
@media (max-width: 960px) {
  .award-feature { grid-template-columns: 1fr; gap: 3rem; }
  .award-badge-wrap { order: -1; }
  .memberships-grid { grid-template-columns: 1fr 1fr; }
  .advisory-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 640px) {
  .memberships-grid { grid-template-columns: 1fr; }
  .award-badge { width: 220px !important; height: 220px !important; }
  .license-strip { flex-direction: column; gap: 1rem; }
}

/* ── RESPONSIVE — LOCATION ──────────────────────────────── */
@media (max-width: 960px) {
  .map-section { grid-template-columns: 1fr !important; }
  .map-embed { min-height: 380px; }
  .map-info { border-left: none; border-top: 1px solid var(--border); padding: 2.5rem 6%; }
  .details-section { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6%; }
  .neighbourhood-section { padding: 4rem 6%; }
  .info-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .restaurant-grid { grid-template-columns: 1fr 1fr; }
  .info-strip { grid-template-columns: 1fr; }
  .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2rem 5%; }
  .strip-item:last-child { border-bottom: none; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-actions a { justify-content: center; }
}

/* ── RESPONSIVE — CONTACT ───────────────────────────────── */
@media (max-width: 960px) {
  .contact-main { grid-template-columns: 1fr !important; gap: 3.5rem; padding: 4.5rem 6% !important; }
  .reassurance-strip { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .form-row { grid-template-columns: 1fr; }
  .reassurance-strip { grid-template-columns: 1fr; }
  .reassurance-item { border-right: none; border-bottom: 1px solid var(--border); padding: 1.75rem 5%; }
  .reassurance-item:last-child { border-bottom: none; }
  .hero-contact-pills { flex-direction: column; }
}

/* ── RESPONSIVE — 404 ───────────────────────────────────── */
@media (max-width: 768px) {
  .error-page { grid-template-columns: 1fr; }
  .error-left { min-height: 38vh; padding: 4rem 5%; }
  .error-right { padding: 3rem 5% 5rem; }
}


/* ============================================================
   PAGE-SPECIFIC STYLES (scoped by WordPress body_class)
   ============================================================ */

/* ===== kearney-visser (Home — global, unique IDs) ===== */
#home { min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding-top: var(--nav-h); }
.hero-text { display: flex; flex-direction: column; justify-content: center;
    padding: 6% 5% 6% 8%; }
.hero-eyebrow { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem; }
.hero-eyebrow::before { content: ''; display: block; width: 2rem; height: 1px; background: var(--terracotta); }
.hero-sub { font-size: 1rem; color: var(--mid-gray); max-width: 420px;
    margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-visual { position: relative; background: var(--cream); overflow: hidden;
    display: flex; align-items: flex-end; justify-content: flex-end; }
.hero-visual-bg { position: absolute; inset: 0;
    background: linear-gradient(135deg, #E8F0E9 0%, #F0E8E0 60%, #E8E4DE 100%); }
.hero-tree { position: absolute; right: -20px; bottom: -20px; width: 70%; opacity: 0.15; }
.hero-stats { position: absolute; bottom: 2.5rem; left: 2rem; right: 2rem;
    display: flex; gap: 1rem; z-index: 3; }
.stat-pill { background: white; border-radius: 3px;
    padding: 0.9rem 1.25rem; flex: 1;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); }
.stat-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 300;
    color: var(--sage-dark); line-height: 1; }
.stat-label { font-size: 0.68rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 0.2rem; }
.hero-badge { position: absolute; top: 3rem; left: 2.5rem;
    background: var(--terracotta); color: white;
    padding: 0.6rem 1rem; font-size: 0.7rem; letter-spacing: 0.1em;
    text-transform: uppercase; border-radius: 2px;
    display: flex; align-items: center; gap: 0.5rem;
    z-index: 2; }
.hero-portrait { position: relative; z-index: 1;
    width: 90%; max-width: 460px;
    margin-bottom: 7rem; margin-right: 2rem; }
.hero-portrait-img { width: 100%; border-radius: 2px;
    background: linear-gradient(160deg, #C4D4C6 0%, #B8C8BA 30%, #A8BDA9 60%, #96AE98 100%);
    aspect-ratio: 3/4;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; }
.hero-portrait-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
#about { background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-image-wrap { position: relative; }
.about-img-placeholder { width: 100%; aspect-ratio: 4/5;
    background: linear-gradient(160deg, #D4E0D6 0%, #C8D8CA 40%, #B4C8B6 100%);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    overflow: hidden; }
.about-img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
.about-accent-box { position: absolute; bottom: -1.5rem; right: -1.5rem;
    background: var(--sage); color: white;
    padding: 1.5rem; width: 180px; border-radius: 2px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1); }
.about-accent-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300; line-height: 1; }
.about-accent-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; opacity: 0.85; margin-top: 0.25rem; }
.about-text p { color: var(--mid-gray); margin-bottom: 1.25rem; line-height: 1.85; }
.about-license { display: inline-flex; align-items: center; gap: 0.6rem;
    background: white; border: 1px solid var(--border);
    padding: 0.6rem 1rem; border-radius: 2px;
    font-size: 0.75rem; color: var(--mid-gray); letter-spacing: 0.06em;
    margin-top: 0.5rem; }
#services { background: var(--warm-white); }
.services-intro { max-width: 640px; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px;
    background: var(--border); border: 1.5px solid var(--border);
    border-radius: 2px; overflow: hidden; margin-bottom: 3rem; }
.service-card { background: white; padding: 2rem 1.75rem; transition: background 0.2s; }
.service-card:hover { background: var(--cream); }
.service-icon { width: 40px; height: 40px; margin-bottom: 1rem; color: var(--sage); }
.service-card h3 { font-family: var(--font-display); font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.72rem;
    color: var(--terracotta); }
.service-card ul { list-style: none; }
.service-card li { font-size: 0.87rem; color: var(--mid-gray); padding: 0.25rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex; align-items: center; gap: 0.5rem; }
.service-card li:last-child { border-bottom: none; }
.service-card li::before { content: ''; display: block; width: 4px; height: 4px;
    border-radius: 50%; background: var(--sage-light); flex-shrink: 0; }
#approach { background: var(--charcoal); color: white; padding: 6rem 8%; }
#approach .section-label { color: var(--terracotta-light); }
#approach .section-label::before { background: var(--terracotta-light); }
#approach h2 { color: white; }
#approach h2 em { color: var(--sage-light); }
#approach .section-intro { color: rgba(255,255,255,0.6); max-width: 640px; }
.approach-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
.approach-item { border-top: 1px solid rgba(255,255,255,0.15); padding-top: 2rem; }
.approach-num { font-family: var(--font-display); font-size: 3.5rem; font-weight: 300;
    color: rgba(255,255,255,0.15); line-height: 1; margin-bottom: 1rem; }
.approach-item h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300;
    color: white; margin-bottom: 0.75rem; }
.approach-item p { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.8; }
#testimonial { background: var(--cream); text-align: center; padding: 6rem 15%; }
.quote-mark { color: var(--sage-light); margin-bottom: 1.5rem; }
.testimonial-text { font-family: var(--font-display); font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 300; font-style: italic; line-height: 1.5;
    color: var(--charcoal); margin-bottom: 2rem; }
.testimonial-attr { font-size: 0.75rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--mid-gray); }
.testimonial-divider { display: flex; align-items: center; justify-content: center; gap: 1rem; margin: 1rem 0; }
.testimonial-divider span { display: block; width: 2rem; height: 1px; background: var(--border); }
#credentials { background: var(--warm-white); }
.cred-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; margin-top: 3rem; }
.cred-block h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
    margin-bottom: 1.5rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border); }
.cred-item { padding: 1rem 0; border-bottom: 1px solid var(--light-gray);
    display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: start; }
.cred-year { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--sage);
    text-transform: uppercase; font-weight: 500; white-space: nowrap; padding-top: 0.1rem; }
.cred-detail strong { display: block; font-size: 0.9rem; font-weight: 500; color: var(--charcoal); margin-bottom: 0.1rem; }
.cred-detail span { font-size: 0.8rem; color: var(--mid-gray); }
#contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; }
.contact-info h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 2rem; }
.info-block { margin-bottom: 2rem; }
.info-label { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem; }
.info-label svg { flex-shrink: 0; }
.info-value { font-size: 0.95rem; color: var(--charcoal); line-height: 1.7; }
.info-value a { color: var(--charcoal); text-decoration: none; }
.info-value a:hover { color: var(--sage-dark); }
.contact-form h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 0.5rem; }
.form-sub { font-size: 0.85rem; color: var(--mid-gray); margin-bottom: 2rem; line-height: 1.7; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.25rem; }
.field label { display: block; font-size: 0.7rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.4rem; }
.field input, .field textarea, .field select { width: 100%; padding: 0.75rem 1rem;
    border: 1px solid var(--border); background: white;
    font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal);
    border-radius: 2px; outline: none; transition: border-color 0.2s;
    -webkit-appearance: none; }
.field input:focus, .field textarea:focus { border-color: var(--sage); }
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.75rem; color: var(--mid-gray); margin-top: 1rem; line-height: 1.6; }
@media (max-width: 960px) { 
    #home { grid-template-columns: 1fr; min-height: auto; }
    .hero-text { order: 2; padding: 3.5rem 6% 4rem; }
    .hero-visual { order: 1; min-height: 60vw; }
    .hero-portrait { width: 68%; max-width: 340px; margin-bottom: 5rem; margin-right: 1.5rem; }
    .hero-stats { flex-wrap: wrap; gap: 0.5rem; }
    .stat-pill { flex: 1 1 calc(33% - 0.5rem); min-width: 80px; }
    .hero-sub { max-width: 100%; }
    .about-grid { grid-template-columns: 1fr; gap: 3rem; }
    .about-accent-box { right: 0; bottom: -1rem; }
    .services-grid { grid-template-columns: 1fr 1fr; }
    .approach-grid { grid-template-columns: 1fr 1fr; }
    .cred-grid { grid-template-columns: 1fr; gap: 3rem; }
    .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
    #testimonial { padding: 4rem 8%; }
   }
@media (max-width: 640px) { 
    #home { min-height: auto; }
    .hero-text { padding: 3rem 5% 3.5rem; }
    .hero-visual { min-height: 75vw; }
    .hero-portrait { width: 78%; margin-bottom: 4.5rem; margin-right: 1rem; }
    .hero-badge { font-size: 0.6rem; padding: 0.4rem 0.75rem; top: 1.5rem; left: 1.5rem; }
    .hero-stats { bottom: 1.25rem; left: 1rem; right: 1rem; gap: 0.4rem; }
    .stat-pill { padding: 0.6rem 0.75rem; }
    .stat-num { font-size: 1.3rem; }
    .stat-label { font-size: 0.6rem; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn-primary,
    .hero-actions .btn-outline { justify-content: center; }
    .about-accent-box { position: relative; right: auto; bottom: auto; margin-top: 1.5rem; width: 100%; }
    .services-grid { grid-template-columns: 1fr; }
    .approach-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    #testimonial { padding: 3.5rem 5%; }
    section { padding: 3.5rem 5%; }
    #approach { padding: 3.5rem 5%; }
   }
@media (max-width: 400px) { 
    .hero-portrait { width: 85%; }
    .hero-stats { display: none; }
   }
#testimonial { background: var(--cream);
    text-align: center;
    padding: 6rem 10%; }
#testimonial h2 { margin-bottom: 3rem; }
.testimonial-carousel { position: relative;
    min-height: 260px;
    margin-bottom: 2.5rem; }
.testimonial-slide { display: none;
    flex-direction: column;
    align-items: center;
    animation: tFadeIn 0.5s ease; }
.testimonial-slide.active { display: flex; }
@keyframes tFadeIn { 
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
   }
.quote-mark { color: var(--sage-light); margin-bottom: 1.25rem; }
.testimonial-text { font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    font-weight: 300; font-style: italic; line-height: 1.55;
    color: var(--charcoal); margin-bottom: 1rem;
    max-width: 780px; }
.testimonial-body { font-size: 0.92rem; color: var(--mid-gray);
    line-height: 1.85; max-width: 640px;
    margin-bottom: 1.5rem; }
.testimonial-divider { display: flex; align-items: center; justify-content: center;
    gap: 1rem; margin-bottom: 0.75rem; }
.testimonial-divider span { display: block; width: 2rem; height: 1px; background: var(--border); }
.testimonial-dot-divider { width: 6px; height: 6px; border-radius: 50%; background: var(--border); }
.testimonial-attr { font-size: 0.75rem; letter-spacing: 0.14em;
    text-transform: uppercase; color: var(--mid-gray); }
.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 1.25rem; }
.testimonial-prev, .testimonial-next { background: white; border: 1px solid var(--border);
    border-radius: 50%; width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; color: var(--mid-gray);
    transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
    flex-shrink: 0; }
.testimonial-prev:hover, .testimonial-next:hover { border-color: var(--sage); color: var(--sage);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.testimonial-dots { display: flex; gap: 0.5rem; align-items: center; }
.t-dot { width: 8px; height: 8px; border-radius: 50%;
    background: var(--border); border: none; cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    padding: 0; }
.t-dot.active { background: var(--sage); transform: scale(1.3); }
.t-dot:hover { background: var(--sage-light); }
@media (max-width: 960px) { 
    #testimonial { padding: 4.5rem 8%; }
   }
@media (max-width: 640px) { 
    #testimonial { padding: 3.5rem 5%; }
    .testimonial-carousel { min-height: 320px; }
    .testimonial-body { font-size: 0.87rem; }
   }

/* ===== kearney-services (scoped: .page-template-page-services) ===== */
:root { --cream: #F9F5EF;
    --warm-white: #FDFAF6;
    --sage: #7A9E7E;
    --sage-light: #A8C4AB;
    --sage-dark: #4D7A52;
    --terracotta: #C4765A;
    --terracotta-light: #E8A98F;
    --charcoal: #2C2C2C;
    --mid-gray: #6B6B6B;
    --light-gray: #E8E4DE;
    --border: #DDD8D0;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --nav-h: 72px; }
.page-template-page-services nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    background: rgba(253,250,246,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s; }
.page-template-page-services .nav-brand span { display: block; font-size: 0.7rem; font-family: var(--font-body); letter-spacing: 0.12em; color: var(--mid-gray); text-transform: uppercase; font-weight: 400; }
.page-template-page-services .nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); text-decoration: none; transition: color 0.2s; }
.page-template-page-services .nav-cta:hover { background: var(--sage-dark) !important; }
.page-template-page-services .page-hero { padding-top: var(--nav-h);
    min-height: 52vh;
    display: grid;
    grid-template-columns: 1fr 1fr; }
.page-template-page-services .page-hero-text { background: var(--cream);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 5% 5rem 8%; }
.page-template-page-services .page-eyebrow::before { content: ""; display: block; width: 2rem; height: 1px; background: var(--terracotta); }
.page-template-page-services h1 { font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 300; line-height: 1.1;
    color: var(--charcoal); margin-bottom: 1.25rem; }
.page-template-page-services .page-hero-sub { font-size: 1rem; color: var(--mid-gray);
    max-width: 420px; line-height: 1.85;
    margin-bottom: 2rem; }
.page-template-page-services .page-hero-img::after { content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(249,245,239,0.35) 0%, transparent 40%); }
.page-template-page-services .btn-primary:hover { background: #b36347; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,118,90,0.3); }
.page-template-page-services .section-label::before { content: ""; display: block; width: 1.5rem; height: 1px; background: var(--terracotta); }
.page-template-page-services .intro-strip { background: var(--warm-white);
    padding: 5rem 8%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.page-template-page-services .intro-strip p { color: var(--mid-gray); line-height: 1.9; margin-bottom: 1.1rem; font-size: 0.97rem; }
.page-template-page-services .intro-strip p:last-child { margin-bottom: 0; }
.page-template-page-services .intro-aside { background: var(--cream); border-radius: 2px;
    padding: 2.5rem; border-left: 3px solid var(--sage); }
.page-template-page-services .intro-aside blockquote { font-family: var(--font-display); font-size: 1.45rem; font-weight: 300;
    font-style: italic; line-height: 1.5; color: var(--charcoal); margin-bottom: 1rem; }
.page-template-page-services .intro-aside cite { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid-gray); font-style: normal;
    display: flex; align-items: center; gap: 0.5rem; }
.page-template-page-services .intro-aside cite::before { content: ""; display: block; width: 1.5rem; height: 1px; background: var(--border); }
.page-template-page-services .methods-band { background: var(--charcoal);
    padding: 4rem 8%;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.page-template-page-services .method-item { padding: 2rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.08); }
.page-template-page-services .method-item:last-child { border-right: none; }
.page-template-page-services .method-icon { margin-bottom: 1rem; color: var(--sage-light); }
.page-template-page-services .method-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300;
    color: white; margin-bottom: 0.5rem; }
.page-template-page-services .method-desc { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.page-template-page-services .conditions-section { background: var(--cream);
    padding: 6rem 8%; }
.page-template-page-services .conditions-header { margin-bottom: 4rem; }
.page-template-page-services .conditions-grid { display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    background: var(--border);
    border: 1.5px solid var(--border);
    border-radius: 2px;
    overflow: hidden; }
.page-template-page-services .condition-card { background: var(--warm-white);
    padding: 2.25rem 2rem;
    transition: background 0.2s;
    cursor: default; }
.page-template-page-services .condition-card:hover { background: white; }
.page-template-page-services .condition-tag { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.5rem; }
.page-template-page-services .condition-tag svg { flex-shrink: 0; }
.page-template-page-services .condition-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 1rem; line-height: 1.25; }
.page-template-page-services .condition-card ul { list-style: none; }
.page-template-page-services .condition-card li { font-size: 0.84rem; color: var(--mid-gray);
    padding: 0.3rem 0;
    border-bottom: 1px solid var(--light-gray);
    display: flex; align-items: flex-start; gap: 0.6rem;
    line-height: 1.5; }
.page-template-page-services .condition-card li:last-child { border-bottom: none; }
.page-template-page-services .condition-card li::before { content: ""; display: block; width: 4px; height: 4px; border-radius: 50%;
    background: var(--sage-light); flex-shrink: 0; margin-top: 0.5em; }
.page-template-page-services .who-section { background: var(--warm-white);
    padding: 6rem 8%; }
.page-template-page-services .who-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem;
    margin-top: 3.5rem; }
.page-template-page-services .who-card { border: 1px solid var(--border); border-radius: 2px;
    padding: 2.5rem 2rem;
    transition: border-color 0.2s, box-shadow 0.2s; }
.page-template-page-services .who-card:hover { border-color: var(--sage-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.page-template-page-services .who-icon { margin-bottom: 1.5rem; color: var(--sage); }
.page-template-page-services .who-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
    color: var(--charcoal); margin-bottom: 0.75rem; }
.page-template-page-services .who-card p { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.8; }
.page-template-page-services .family-section { background: var(--sage-dark);
    padding: 5rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.page-template-page-services .family-text .section-label { color: var(--sage-light); }
.page-template-page-services .family-text .section-label::before { background: var(--sage-light); }
.page-template-page-services .family-text h2 { color: white; }
.page-template-page-services .family-text h2 em { color: var(--terracotta-light); font-style: italic; }
.page-template-page-services .family-text p { color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; }
.page-template-page-services .family-features { display: flex; flex-direction: column; gap: 1.25rem; }
.page-template-page-services .family-feature { background: rgba(255,255,255,0.08);
    border-radius: 2px; padding: 1.25rem 1.5rem;
    display: flex; gap: 1rem; align-items: flex-start;
    border: 1px solid rgba(255,255,255,0.1); }
.page-template-page-services .family-feature-icon { flex-shrink: 0; color: var(--sage-light); margin-top: 2px; }
.page-template-page-services .family-feature h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300;
    color: white; margin-bottom: 0.25rem; }
.page-template-page-services .family-feature p { font-size: 0.82rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0; }
.page-template-page-services .cta-section { background: var(--cream);
    padding: 6rem 8%;
    text-align: center; }
.page-template-page-services .cta-section h2 { margin-bottom: 1rem; }
.page-template-page-services .cta-section p { color: var(--mid-gray); max-width: 500px; margin: 0 auto 2.5rem; line-height: 1.85; }
.page-template-page-services .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-template-page-services .btn-outline { display: inline-flex; align-items: center; gap: 0.75rem;
    border: 1px solid var(--charcoal); color: var(--charcoal);
    padding: 0.9rem 2rem; text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 500;
    border-radius: 2px; transition: all 0.25s; }
.page-template-page-services .footer-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.page-template-page-services .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.08em; transition: color 0.2s; }
@media (max-width: 960px) {
  .page-template-page-services .page-hero { grid-template-columns: 1fr; }
  .page-template-page-services .page-hero-img { min-height: 55vw; order: -1; }
  .page-template-page-services .page-hero-text { padding: 3.5rem 6%; }
  .page-template-page-services .intro-strip { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6%; }
  .page-template-page-services .methods-band { grid-template-columns: 1fr 1fr; padding: 3rem 6%; }
  .page-template-page-services .method-item { border-bottom: 1px solid rgba(255,255,255,0.08); border-right: none; }
  .page-template-page-services .method-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .page-template-page-services .conditions-grid { grid-template-columns: 1fr 1fr; }
  .page-template-page-services .who-grid { grid-template-columns: 1fr 1fr; }
  .page-template-page-services .family-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6%; }
  .page-template-page-services .conditions-section { padding: 4rem 6%; }
  .page-template-page-services .who-section { padding: 4rem 6%; }
  .page-template-page-services footer { grid-template-columns: 1fr; }
  .page-template-page-services .footer-right { text-align: left; }
}
@media (max-width: 640px) {
  .page-template-page-services .conditions-grid { grid-template-columns: 1fr; }
  .page-template-page-services .who-grid { grid-template-columns: 1fr; }
  .page-template-page-services .methods-band { grid-template-columns: 1fr; }
  .page-template-page-services .method-item { border-right: none !important; }
  .page-template-page-services h1 { font-size: 2.6rem; }
  .page-template-page-services .cta-actions { flex-direction: column; align-items: center; }
}
@media (max-width: 960px) {
  .page-template-page-services .who-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .page-template-page-services .who-grid { grid-template-columns: 1fr; }
}

/* ===== kearney-credentials (scoped: .page-template-page-credentials) ===== */
.page-template-page-credentials .hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6);
    max-width: 520px; line-height: 1.85; }
.page-template-page-credentials .hero-license-badge { background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    border-radius: 2px; padding: 1.5rem 2rem;
    text-align: center; white-space: nowrap;
    flex-shrink: 0; }
.page-template-page-credentials .badge-num { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
    color: white; line-height: 1; display: block; }
.page-template-page-credentials .badge-label { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.45); margin-top: 0.4rem; display: block; }
.page-template-page-credentials .badge-divider { width: 100%; height: 1px; background: rgba(255,255,255,0.15); margin: 0.75rem 0; }
.page-template-page-credentials .badge-state { font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--sage-light); font-weight: 500; }
.page-template-page-credentials .stats-strip { background: var(--cream);
    padding: 3rem 8%;
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border); }
.page-template-page-credentials .stat-item { padding: 1.5rem 2rem;
    border-right: 1px solid var(--border);
    display: flex; flex-direction: column; gap: 0.25rem; }
.page-template-page-credentials .stat-item:last-child { border-right: none; }
.page-template-page-credentials .stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 300;
    color: var(--sage-dark); line-height: 1; }
.page-template-page-credentials .stat-label { font-size: 0.72rem; color: var(--mid-gray); text-transform: uppercase; letter-spacing: 0.1em; }
.page-template-page-credentials .education-section { background: var(--warm-white);
    padding: 6rem 8%; }
.page-template-page-credentials .edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    margin-top: 3.5rem; }
.page-template-page-credentials .timeline { position: relative; padding-left: 1.5rem; }
.page-template-page-credentials .timeline::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0;
    width: 1px; background: var(--border); }
.page-template-page-credentials .timeline-item { position: relative; margin-bottom: 2.5rem; }
.page-template-page-credentials .timeline-item:last-child { margin-bottom: 0; }
.page-template-page-credentials .timeline-dot { position: absolute; left: -1.5rem; top: 0.35rem;
    width: 9px; height: 9px; border-radius: 50%;
    background: white; border: 2px solid var(--sage);
    transform: translateX(-4px); }
.page-template-page-credentials .timeline-dot.filled { background: var(--sage); }
.page-template-page-credentials .timeline-year { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); font-weight: 500; margin-bottom: 0.3rem; }
.page-template-page-credentials .timeline-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.2rem; line-height: 1.3; }
.page-template-page-credentials .timeline-sub { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.6;
    margin-bottom: 0.4rem; }
.page-template-page-credentials .timeline-detail { font-size: 0.78rem; color: var(--mid-gray); line-height: 1.65;
    opacity: 0.8; }
.page-template-page-credentials .timeline-tag { display: inline-flex; align-items: center; gap: 0.4rem;
    background: var(--cream); border: 1px solid var(--border);
    padding: 0.2rem 0.6rem; border-radius: 2px;
    font-size: 0.65rem; letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--mid-gray); margin-top: 0.4rem; }
.page-template-page-credentials .block-heading { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300;
    color: var(--charcoal); margin-bottom: 2rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 1rem; }
.page-template-page-credentials .block-heading svg { color: var(--sage); flex-shrink: 0; }
.page-template-page-credentials .experience-section { background: var(--cream);
    padding: 6rem 8%; }
.page-template-page-credentials .exp-intro { max-width: 680px; margin-bottom: 4rem; }
.page-template-page-credentials .exp-cards { display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 1.5px; background: var(--border);
    border: 1.5px solid var(--border); border-radius: 2px; overflow: hidden;
    margin-bottom: 3rem; }
.page-template-page-credentials .exp-card { background: white; padding: 2rem 1.75rem;
    transition: background 0.2s; }
.page-template-page-credentials .exp-card:hover { background: var(--warm-white); }
.page-template-page-credentials .exp-period { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 0.6rem; font-weight: 500; }
.page-template-page-credentials .exp-role { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.3rem; line-height: 1.3; }
.page-template-page-credentials .exp-org { font-size: 0.8rem; color: var(--sage-dark); margin-bottom: 0.75rem; font-weight: 500; }
.page-template-page-credentials .exp-desc { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.75; }
.page-template-page-credentials .honors-section { background: var(--charcoal);
    padding: 5rem 8%; }
.page-template-page-credentials .honors-section .section-label { color: var(--terracotta-light); }
.page-template-page-credentials .honors-section .section-label::before { background: var(--terracotta-light); }
.page-template-page-credentials .honors-section h2 { color: white; }
.page-template-page-credentials .honors-section h2 em { color: var(--sage-light); }
.page-template-page-credentials .honors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    margin-top: 3.5rem; }
.page-template-page-credentials .honor-item { border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 2rem; }
.page-template-page-credentials .honor-icon { color: var(--sage-light); margin-bottom: 1rem; }
.page-template-page-credentials .honor-title { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300;
    color: white; margin-bottom: 0.5rem; }
.page-template-page-credentials .honor-detail { font-size: 0.82rem; color: rgba(255,255,255,0.45); line-height: 1.75; }
.page-template-page-credentials .assoc-section { background: var(--warm-white);
    padding: 6rem 8%; }
.page-template-page-credentials .assoc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
    margin-top: 3.5rem; }
.page-template-page-credentials .assoc-card { border: 1px solid var(--border); border-radius: 2px;
    padding: 2rem; transition: border-color 0.2s, box-shadow 0.2s; }
.page-template-page-credentials .assoc-card:hover { border-color: var(--sage-light);
    box-shadow: 0 8px 32px rgba(0,0,0,0.06); }
.page-template-page-credentials .assoc-abbr { font-family: var(--font-display); font-size: 2.2rem; font-weight: 300;
    color: var(--sage); line-height: 1; margin-bottom: 0.75rem; }
.page-template-page-credentials .assoc-name { font-size: 0.88rem; font-weight: 500; color: var(--charcoal);
    margin-bottom: 0.4rem; line-height: 1.4; }
.page-template-page-credentials .assoc-desc { font-size: 0.8rem; color: var(--mid-gray); line-height: 1.7; }
.page-template-page-credentials .photo-break { position: relative; height: 480px; overflow: hidden;
    display: flex; align-items: center; justify-content: center; }
.page-template-page-credentials .photo-break img { width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%;
    filter: brightness(0.75) saturate(0.9); }
.page-template-page-credentials .photo-break-overlay { position: absolute; inset: 0;
    background: linear-gradient(
      135deg,
      rgba(44,44,44,0.7) 0%,
      rgba(77,122,82,0.4) 100%
    ); }
.page-template-page-credentials .photo-break-content { position: relative; z-index: 2;
    text-align: center; padding: 2rem; }
.page-template-page-credentials .photo-break-content blockquote { font-family: var(--font-display); font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300; font-style: italic; color: white;
    line-height: 1.4; max-width: 700px; margin: 0 auto 1.5rem; }
.page-template-page-credentials .photo-break-content cite { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.55); font-style: normal;
    display: flex; align-items: center; justify-content: center; gap: 1rem; }
.page-template-page-credentials .photo-break-content cite::before, .page-template-page-credentials .photo-break-content cite::after { content: ""; display: block; width: 2rem; height: 1px;
    background: rgba(255,255,255,0.3); }
.page-template-page-credentials .cta-section { background: var(--cream);
    padding: 6rem 8%;
    text-align: center; }
.page-template-page-credentials .cta-section p { color: var(--mid-gray); max-width: 500px;
    margin: 0 auto 2.5rem; line-height: 1.85; }
.page-template-page-credentials .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-template-page-credentials .advisory-section { background: var(--sage-dark); padding: 5rem 8%; }
.page-template-page-credentials .advisory-section .section-label { color: var(--sage-light); }
.page-template-page-credentials .advisory-section .section-label::before { background: var(--sage-light); }
.page-template-page-credentials .advisory-section h2 { color: white; }
.page-template-page-credentials .advisory-section h2 em { color: var(--terracotta-light); }
.page-template-page-credentials .advisory-grid { margin-top: 3rem; display: grid; grid-template-columns: 1fr 2fr; gap: 3rem; align-items: start; }
.page-template-page-credentials .advisory-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 2px; padding: 2.5rem; }
.page-template-page-credentials .advisory-logo-wrap { width: 72px; height: 72px; background: rgba(255,255,255,0.1); border-radius: 2px; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; border: 1px solid rgba(255,255,255,0.15); }
.page-template-page-credentials .advisory-role { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--terracotta-light); margin-bottom: 0.5rem; }
.page-template-page-credentials .advisory-card h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 300; color: white; margin-bottom: 0.3rem; }
.page-template-page-credentials .advisory-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.page-template-page-credentials .advisory-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.85; }
.page-template-page-credentials .advisory-divider { width: 2rem; height: 1px; background: rgba(255,255,255,0.2); margin: 1.25rem 0; }
.page-template-page-credentials .advisory-detail { display: flex; gap: 0.75rem; font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.page-template-page-credentials .advisory-detail svg { flex-shrink: 0; color: var(--sage-light); margin-top: 2px; }
.page-template-page-credentials .org-logo { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.page-template-page-credentials .org-logo--light { filter: brightness(0) invert(1); opacity: 0.85; }
@media (max-width: 960px) {
  .page-template-page-credentials .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 2rem 6%; }
  .page-template-page-credentials .stat-item:nth-child(2) { border-right: none; }
  .page-template-page-credentials .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .page-template-page-credentials .stat-item:nth-child(4) { border-top: 1px solid var(--border); }
  .page-template-page-credentials .edu-grid { grid-template-columns: 1fr; gap: 3rem; }
  .page-template-page-credentials .photo-break { height: 340px; }
  .page-template-page-credentials .exp-cards { grid-template-columns: 1fr 1fr; gap: 1.5px; }
  .page-template-page-credentials .honors-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .page-template-page-credentials .advisory-grid { grid-template-columns: 1fr; gap: 2rem; }
  .page-template-page-credentials .assoc-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .page-template-page-credentials .education-section, .page-template-page-credentials .experience-section, .page-template-page-credentials .assoc-section { padding: 4rem 6%; }
  .page-template-page-credentials .honors-section { padding: 4rem 6%; }
  .page-template-page-credentials .advisory-section { padding: 4rem 6%; }
  .page-template-page-credentials .cta-section { padding: 4rem 6%; }
  .page-template-page-credentials .hero-license-badge { display: none; }
}
@media (max-width: 640px) {
  .page-template-page-credentials .stats-strip { grid-template-columns: repeat(2, 1fr); padding: 1.5rem 5%; }
  .page-template-page-credentials .stat-item { padding: 1rem 0.75rem; }
  .page-template-page-credentials .stat-num { font-size: 2rem; }
  .page-template-page-credentials .stat-label { font-size: 0.6rem; }
  .page-template-page-credentials .photo-break { height: 240px; }
  .page-template-page-credentials .exp-cards { grid-template-columns: 1fr; }
  .page-template-page-credentials .exp-card { padding: 1.5rem; }
  .page-template-page-credentials .honors-grid { grid-template-columns: 1fr; }
  .page-template-page-credentials .honor-item { padding-top: 1.5rem; }
  .page-template-page-credentials .advisory-card { padding: 1.75rem; }
  .page-template-page-credentials .assoc-grid { grid-template-columns: 1fr; }
  .page-template-page-credentials .assoc-card { padding: 1.5rem; }
  .page-template-page-credentials .cred-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .page-template-page-credentials .cred-item { grid-template-columns: 3rem 1fr; }
  .page-template-page-credentials .education-section, .page-template-page-credentials .experience-section, .page-template-page-credentials .assoc-section { padding: 3.5rem 5%; }
  .page-template-page-credentials .honors-section, .page-template-page-credentials .advisory-section, .page-template-page-credentials .cta-section { padding: 3.5rem 5%; }
  .page-template-page-credentials .timeline { padding-left: 1.25rem; }
}

/* ===== kearney-fees (scoped: .page-template-page-fees) ===== */
:root { --cream: #F9F5EF;
    --warm-white: #FDFAF6;
    --sage: #7A9E7E;
    --sage-light: #A8C4AB;
    --sage-dark: #4D7A52;
    --terracotta: #C4765A;
    --terracotta-light: #E8A98F;
    --charcoal: #2C2C2C;
    --mid-gray: #6B6B6B;
    --light-gray: #E8E4DE;
    --border: #DDD8D0;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --nav-h: 72px; }
.page-template-page-fees nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    background: rgba(253,250,246,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s; }
.page-template-page-fees .nav-brand span { display: block; font-size: 0.7rem; font-family: var(--font-body); letter-spacing: 0.12em; color: var(--mid-gray); text-transform: uppercase; font-weight: 400; }
.page-template-page-fees .nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); text-decoration: none; transition: color 0.2s; }
.page-template-page-fees .nav-cta:hover { background: var(--sage-dark) !important; }
.page-template-page-fees .page-hero { padding-top: var(--nav-h);
    min-height: 50vh;
    display: grid;
    grid-template-columns: 1fr 1fr; }
.page-template-page-fees .page-hero-text { display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 5% 5rem 8%;
    background: var(--cream); }
.page-template-page-fees .page-eyebrow::before { content: ""; display: block; width: 2rem; height: 1px; background: var(--terracotta); }
.page-template-page-fees h1 { font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.5vw, 4rem);
    font-weight: 300; line-height: 1.1; color: var(--charcoal); margin-bottom: 1.25rem; }
.page-template-page-fees .page-hero-sub { font-size: 1rem; color: var(--mid-gray);
    max-width: 440px; line-height: 1.85; margin-bottom: 0; }
.page-template-page-fees .page-hero-img img { width: 100%; height: 100%;
    object-fit: cover; object-position: center 20%;
    filter: brightness(0.9) saturate(0.85); }
.page-template-page-fees .page-hero-img::after { content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(249,245,239,0.4) 0%, transparent 50%); }
.page-template-page-fees .section-label::before { content: ""; display: block; width: 1.5rem; height: 1px; background: var(--terracotta); }
.page-template-page-fees .btn-primary:hover { background: #b36347; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,118,90,0.3); }
.page-template-page-fees .btn-outline { display: inline-flex; align-items: center; gap: 0.75rem;
    border: 1px solid var(--charcoal); color: var(--charcoal);
    padding: 0.9rem 2rem; text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 500;
    border-radius: 2px; transition: all 0.25s; }
.page-template-page-fees .philosophy-strip { background: var(--warm-white);
    padding: 5rem 8%;
    display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem; align-items: center; }
.page-template-page-fees .philosophy-strip p { color: var(--mid-gray); line-height: 1.9; margin-bottom: 1.1rem; font-size: 0.97rem; }
.page-template-page-fees .philosophy-strip p:last-child { margin-bottom: 0; }
.page-template-page-fees .philosophy-callout { background: var(--charcoal); border-radius: 2px; padding: 2.5rem;
    display: flex; flex-direction: column; gap: 1.5rem; }
.page-template-page-fees .callout-item { display: flex; gap: 1rem; align-items: flex-start; }
.page-template-page-fees .callout-icon { flex-shrink: 0; color: var(--sage-light); margin-top: 2px; }
.page-template-page-fees .callout-text h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300;
    color: white; margin-bottom: 0.2rem; }
.page-template-page-fees .callout-text p { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 0; }
.page-template-page-fees .sessions-section { background: var(--cream);
    padding: 6rem 8%; }
.page-template-page-fees .sessions-header { margin-bottom: 4rem; }
.page-template-page-fees .sessions-grid { display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 1.5px; background: var(--border);
    border: 1.5px solid var(--border); border-radius: 2px; overflow: hidden; }
.page-template-page-fees .session-card { background: white; padding: 2.5rem 2.25rem;
    transition: background 0.2s;
    display: flex; flex-direction: column; gap: 0; }
.page-template-page-fees .session-card:hover { background: var(--warm-white); }
.page-template-page-fees .session-card-top { display: flex; align-items: flex-start;
    justify-content: space-between; gap: 1rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--light-gray); }
.page-template-page-fees .session-icon { color: var(--sage); flex-shrink: 0; }
.page-template-page-fees .session-rate { font-family: var(--font-display); font-size: 1rem; font-weight: 300;
    color: var(--mid-gray); text-align: right; line-height: 1.3;
    font-style: italic; }
.page-template-page-fees .session-rate span { display: block; font-size: 0.6rem; font-family: var(--font-body);
    letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--terracotta); font-style: normal; margin-bottom: 0.1rem; }
.page-template-page-fees .session-card h3 { font-family: var(--font-display); font-size: 1.45rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.5rem; line-height: 1.25; }
.page-template-page-fees .session-card .session-duration { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid-gray); margin-bottom: 1rem; }
.page-template-page-fees .session-card p { font-size: 0.85rem; color: var(--mid-gray); line-height: 1.8; flex: 1; }
.page-template-page-fees .session-includes { margin-top: 1.25rem; padding-top: 1.25rem;
    border-top: 1px solid var(--light-gray);
    list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.page-template-page-fees .session-includes li { font-size: 0.8rem; color: var(--mid-gray);
    display: flex; align-items: center; gap: 0.6rem; }
.page-template-page-fees .session-includes li::before { content: ""; display: block; width: 4px; height: 4px;
    border-radius: 50%; background: var(--sage); flex-shrink: 0; }
.page-template-page-fees .insurance-section { background: var(--warm-white);
    padding: 6rem 8%; }
.page-template-page-fees .insurance-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    margin-top: 3.5rem; align-items: start; }
.page-template-page-fees .superbill-explainer { background: var(--cream); border-radius: 2px; padding: 2.5rem;
    border-left: 3px solid var(--sage); }
.page-template-page-fees .superbill-explainer h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 1rem; }
.page-template-page-fees .superbill-explainer p { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.85;
    margin-bottom: 1rem; }
.page-template-page-fees .superbill-explainer p:last-child { margin-bottom: 0; }
.page-template-page-fees .superbill-steps { counter-reset: steps;
    list-style: none;
    display: flex; flex-direction: column; gap: 1rem;
    margin-top: 1.5rem; }
.page-template-page-fees .superbill-steps li { counter-increment: steps;
    display: flex; gap: 1rem; align-items: flex-start;
    font-size: 0.84rem; color: var(--mid-gray); line-height: 1.7; }
.page-template-page-fees .superbill-steps li::before { content: counter(steps);
    display: flex; align-items: center; justify-content: center;
    width: 24px; height: 24px; border-radius: 50%;
    background: var(--sage); color: white;
    font-size: 0.65rem; font-weight: 500; flex-shrink: 0;
    margin-top: 0.1rem; }
.page-template-page-fees .insurance-faq { display: flex; flex-direction: column; gap: 0; }
.page-template-page-fees .faq-item { border-bottom: 1px solid var(--border);
    padding: 1.5rem 0; }
.page-template-page-fees .faq-item:first-child { border-top: 1px solid var(--border); }
.page-template-page-fees .faq-q { font-size: 0.92rem; font-weight: 500; color: var(--charcoal);
    margin-bottom: 0.6rem; display: flex; gap: 0.75rem; align-items: flex-start; }
.page-template-page-fees .faq-q::before { content: "Q";
    font-size: 0.6rem; letter-spacing: 0.1em;
    background: var(--terracotta); color: white;
    padding: 0.15rem 0.4rem; border-radius: 2px;
    flex-shrink: 0; margin-top: 0.15rem; font-weight: 500; }
.page-template-page-fees .faq-a { font-size: 0.84rem; color: var(--mid-gray); line-height: 1.8; padding-left: 1.6rem; }
.page-template-page-fees .goodfaith-section { background: var(--sage-dark);
    padding: 5rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.page-template-page-fees .goodfaith-text .section-label { color: var(--sage-light); }
.page-template-page-fees .goodfaith-text .section-label::before { background: var(--sage-light); }
.page-template-page-fees .goodfaith-text h2 { color: white; }
.page-template-page-fees .goodfaith-text h2 em { color: var(--terracotta-light); }
.page-template-page-fees .goodfaith-text p { color: rgba(255,255,255,0.65); line-height: 1.9; margin-bottom: 1rem; font-size: 0.95rem; }
.page-template-page-fees .goodfaith-text p:last-child { margin-bottom: 0; }
.page-template-page-fees .goodfaith-card { background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px; padding: 2.5rem; }
.page-template-page-fees .goodfaith-card h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 300;
    color: white; margin-bottom: 1rem; }
.page-template-page-fees .goodfaith-card p { font-size: 0.83rem; color: rgba(255,255,255,0.5);
    line-height: 1.85; margin-bottom: 1rem; }
.page-template-page-fees .goodfaith-card p:last-child { margin-bottom: 0; }
.page-template-page-fees .goodfaith-card a { color: var(--sage-light); text-decoration: underline;
    text-underline-offset: 3px; }
.page-template-page-fees .consult-section { background: var(--cream);
    padding: 6rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.page-template-page-fees .consult-text h2 { margin-bottom: 1rem; }
.page-template-page-fees .consult-text p { color: var(--mid-gray); line-height: 1.9; margin-bottom: 2rem; }
.page-template-page-fees .consult-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.page-template-page-fees .consult-details { display: flex; flex-direction: column; gap: 1.5rem; }
.page-template-page-fees .consult-detail-item { display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.5rem; background: white;
    border: 1px solid var(--border); border-radius: 2px;
    transition: border-color 0.2s; }
.page-template-page-fees .consult-detail-item:hover { border-color: var(--sage-light); }
.page-template-page-fees .consult-detail-icon { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.page-template-page-fees .consult-detail-item h4 { font-size: 0.8rem; font-weight: 500; color: var(--charcoal);
    margin-bottom: 0.2rem; text-transform: uppercase; letter-spacing: 0.06em; }
.page-template-page-fees .consult-detail-item p { font-size: 0.83rem; color: var(--mid-gray); line-height: 1.65; margin-bottom: 0; }
.page-template-page-fees .footer-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.page-template-page-fees .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.08em; transition: color 0.2s; }
@media (max-width: 960px) {
  .page-template-page-fees .page-hero { grid-template-columns: 1fr; }
  .page-template-page-fees .page-hero-img { min-height: 55vw; order: -1; }
  .page-template-page-fees .page-hero-text { padding: 3.5rem 6%; }
  .page-template-page-fees .philosophy-strip { grid-template-columns: 1fr; gap: 2.5rem; padding: 4rem 6%; }
  .page-template-page-fees .sessions-grid { grid-template-columns: 1fr; }
  .page-template-page-fees .insurance-grid { grid-template-columns: 1fr; gap: 3rem; }
  .page-template-page-fees .goodfaith-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6%; }
  .page-template-page-fees .consult-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6%; }
  .page-template-page-fees .sessions-section, .page-template-page-fees .insurance-section { padding: 4rem 6%; }
  .page-template-page-fees footer { grid-template-columns: 1fr; }
  .page-template-page-fees .footer-right { text-align: left; }
}
@media (max-width: 640px) {
  .page-template-page-fees h1 { font-size: 2.6rem; }
  .page-template-page-fees .sessions-grid { grid-template-columns: 1fr; }
  .page-template-page-fees .consult-actions { flex-direction: column; }
}

/* ===== kearney-accreditation (scoped: .page-template-page-accreditation) ===== */
:root { --cream: #F9F5EF;
    --warm-white: #FDFAF6;
    --sage: #7A9E7E;
    --sage-light: #A8C4AB;
    --sage-dark: #4D7A52;
    --terracotta: #C4765A;
    --terracotta-light: #E8A98F;
    --charcoal: #2C2C2C;
    --mid-gray: #6B6B6B;
    --light-gray: #E8E4DE;
    --border: #DDD8D0;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --nav-h: 72px; }
.page-template-page-accreditation nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    background: rgba(253,250,246,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s; }
.page-template-page-accreditation .nav-brand span { display: block; font-size: 0.7rem; font-family: var(--font-body); letter-spacing: 0.12em; color: var(--mid-gray); text-transform: uppercase; font-weight: 400; }
.page-template-page-accreditation .nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); text-decoration: none; transition: color 0.2s; }
.page-template-page-accreditation .nav-links a:hover { color: var(--sage-dark); }
.page-template-page-accreditation .nav-links a.active { color: var(--sage-dark); }
.page-template-page-accreditation .nav-cta:hover { background: var(--sage-dark) !important; }
.page-template-page-accreditation .page-hero { padding-top: var(--nav-h);
    min-height: 52vh;
    display: grid;
    grid-template-columns: 1fr 1fr; }
.page-template-page-accreditation .page-hero-text { background: var(--charcoal);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 5% 5rem 8%; }
.page-template-page-accreditation .page-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--terracotta-light); margin-bottom: 1.25rem;
    display: flex; align-items: center; gap: 0.75rem; }
.page-template-page-accreditation .page-eyebrow::before { content: ""; display: block; width: 2rem; height: 1px; background: var(--terracotta-light); }
.page-template-page-accreditation h1 { font-family: var(--font-display);
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.1; color: white; margin-bottom: 1.25rem; }
.page-template-page-accreditation h1 em { font-style: italic; color: var(--sage-light); }
.page-template-page-accreditation .page-hero-sub { font-size: 1rem; color: rgba(255,255,255,0.55);
    max-width: 440px; line-height: 1.85; }
.page-template-page-accreditation .page-hero-img img { width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: brightness(0.75) saturate(0.8); }
.page-template-page-accreditation .page-hero-img::after { content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(44,44,44,0.5) 0%, transparent 50%); }
.page-template-page-accreditation .section-label::before { content: ""; display: block; width: 1.5rem; height: 1px; background: var(--terracotta); }
.page-template-page-accreditation .btn-primary:hover { background: #b36347; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,118,90,0.3); }
.page-template-page-accreditation .btn-outline { display: inline-flex; align-items: center; gap: 0.75rem;
    border: 1px solid var(--charcoal); color: var(--charcoal);
    padding: 0.9rem 2rem; text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 500;
    border-radius: 2px; transition: all 0.25s; }
.page-template-page-accreditation .award-section { background: var(--cream);
    padding: 7rem 8%; }
.page-template-page-accreditation .award-feature { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center;
    margin-top: 4rem; }
.page-template-page-accreditation .award-badge-wrap { display: flex; align-items: center; justify-content: center;
    position: relative; }
.page-template-page-accreditation .award-badge { width: 320px; height: 320px;
    border-radius: 50%;
    background: var(--charcoal);
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center; padding: 2.5rem;
    position: relative;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15); }
.page-template-page-accreditation .award-badge::before { content: "";
    position: absolute; inset: 10px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.12); }
.page-template-page-accreditation .award-badge-year { font-family: var(--font-display); font-size: 4rem; font-weight: 300;
    color: var(--sage-light); line-height: 1; margin-bottom: 0.5rem; }
.page-template-page-accreditation .award-badge-title { font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.6); line-height: 1.6; }
.page-template-page-accreditation .award-badge-org { font-family: var(--font-display); font-size: 0.95rem; font-weight: 300;
    font-style: italic; color: rgba(255,255,255,0.4);
    margin-top: 0.75rem; line-height: 1.4; }
.page-template-page-accreditation .award-ring { position: absolute;
    width: 380px; height: 380px;
    border-radius: 50%;
    border: 1px dashed rgba(196,118,90,0.25);
    animation: spin 40s linear infinite; }
.page-template-page-accreditation .award-ring-2 { width: 420px; height: 420px;
    border-color: rgba(168,196,171,0.15);
    animation-duration: 60s; animation-direction: reverse; }
@keyframes spin {
  .page-template-page-accreditation from { transform: rotate(0deg); }
  .page-template-page-accreditation to { transform: rotate(360deg); }
}
.page-template-page-accreditation .award-text h3 { font-family: var(--font-display); font-size: 2rem; font-weight: 300;
    color: var(--charcoal); margin-bottom: 1rem; line-height: 1.25; }
.page-template-page-accreditation .award-text h3 em { font-style: italic; color: var(--sage-dark); }
.page-template-page-accreditation .award-text p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.9;
    margin-bottom: 1rem; }
.page-template-page-accreditation .award-org-tag { display: inline-flex; align-items: center; gap: 0.6rem;
    background: white; border: 1px solid var(--border);
    padding: 0.6rem 1rem; border-radius: 2px;
    font-size: 0.72rem; color: var(--mid-gray);
    letter-spacing: 0.06em; margin-top: 0.5rem; }
.page-template-page-accreditation .memberships-section { background: var(--warm-white);
    padding: 7rem 8%; }
.page-template-page-accreditation .memberships-grid { display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 2rem; margin-top: 4rem; }
.page-template-page-accreditation .membership-card { border: 1px solid var(--border); border-radius: 2px;
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column; gap: 0;
    transition: border-color 0.25s, box-shadow 0.25s;
    background: white; }
.page-template-page-accreditation .membership-card:hover { border-color: var(--sage-light);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.page-template-page-accreditation .membership-logo { width: 64px; height: 64px;
    background: var(--cream); border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.75rem;
    border: 1px solid var(--border);
    flex-shrink: 0; }
.page-template-page-accreditation .membership-type { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem; }
.page-template-page-accreditation .membership-type::before { content: ""; display: block; width: 1rem; height: 1px; background: var(--terracotta); }
.page-template-page-accreditation .membership-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.5rem; line-height: 1.25; }
.page-template-page-accreditation .membership-abbr { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--sage); font-weight: 500; margin-bottom: 1rem; }
.page-template-page-accreditation .membership-card p { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.85;
    flex: 1; }
.page-template-page-accreditation .membership-since { margin-top: 1.75rem; padding-top: 1.25rem;
    border-top: 1px solid var(--light-gray);
    font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid-gray); display: flex; align-items: center; gap: 0.5rem; }
.page-template-page-accreditation .membership-since svg { color: var(--sage); }
.page-template-page-accreditation .advisory-section { background: var(--sage-dark);
    padding: 7rem 8%; }
.page-template-page-accreditation .advisory-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.page-template-page-accreditation .advisory-text .section-label { color: var(--sage-light); }
.page-template-page-accreditation .advisory-text .section-label::before { background: var(--sage-light); }
.page-template-page-accreditation .advisory-text h2 { color: white; }
.page-template-page-accreditation .advisory-text h2 em { color: var(--terracotta-light); }
.page-template-page-accreditation .advisory-text p { color: rgba(255,255,255,0.65); line-height: 1.9;
    margin-bottom: 1rem; font-size: 0.95rem; }
.page-template-page-accreditation .advisory-card { background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 2px; padding: 3rem; }
.page-template-page-accreditation .advisory-logo-wrap { width: 72px; height: 72px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 2rem;
    border: 1px solid rgba(255,255,255,0.15); }
.page-template-page-accreditation .advisory-role { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terracotta-light); margin-bottom: 0.75rem; }
.page-template-page-accreditation .advisory-card h3 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
    color: white; margin-bottom: 0.5rem; line-height: 1.3; }
.page-template-page-accreditation .advisory-card .advisory-sub { font-size: 0.8rem; color: rgba(255,255,255,0.4);
    text-transform: uppercase; letter-spacing: 0.1em;
    margin-bottom: 1.5rem; font-weight: 500; }
.page-template-page-accreditation .advisory-card p { font-size: 0.87rem; color: rgba(255,255,255,0.55); line-height: 1.85; }
.page-template-page-accreditation .advisory-divider { width: 2rem; height: 1px; background: rgba(255,255,255,0.2);
    margin: 1.5rem 0; }
.page-template-page-accreditation .advisory-detail { display: flex; gap: 0.75rem; align-items: flex-start;
    font-size: 0.82rem; color: rgba(255,255,255,0.4); line-height: 1.7; }
.page-template-page-accreditation .advisory-detail svg { flex-shrink: 0; margin-top: 3px; color: var(--sage-light); }
.page-template-page-accreditation .license-strip { background: var(--cream);
    padding: 4rem 8%;
    display: flex; align-items: center; justify-content: space-between;
    gap: 2rem; flex-wrap: wrap;
    border-top: 1px solid var(--border); }
.page-template-page-accreditation .license-main { display: flex; align-items: center; gap: 2rem; }
.page-template-page-accreditation .license-seal { width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--charcoal);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; }
.page-template-page-accreditation .license-text h3 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.2rem; }
.page-template-page-accreditation .license-text p { font-size: 0.85rem; color: var(--mid-gray); }
.page-template-page-accreditation .license-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300;
    color: var(--sage-dark); letter-spacing: 0.04em; }
.page-template-page-accreditation .cta-section { background: var(--warm-white);
    padding: 6rem 8%; text-align: center; }
.page-template-page-accreditation .cta-section p { color: var(--mid-gray); max-width: 500px;
    margin: 0 auto 2.5rem; line-height: 1.85; }
.page-template-page-accreditation .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-template-page-accreditation .footer-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.page-template-page-accreditation .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.08em; transition: color 0.2s; }
@media (max-width: 960px) {
  .page-template-page-accreditation .page-hero { grid-template-columns: 1fr; }
  .page-template-page-accreditation .page-hero-img { min-height: 55vw; order: -1; }
  .page-template-page-accreditation .page-hero-text { padding: 3.5rem 6%; }
  .page-template-page-accreditation .award-feature { grid-template-columns: 1fr; gap: 3.5rem; }
  .page-template-page-accreditation .award-badge-wrap { order: -1; }
  .page-template-page-accreditation .award-badge { width: 260px; height: 260px; }
  .page-template-page-accreditation .award-ring { width: 310px; height: 310px; }
  .page-template-page-accreditation .award-ring-2 { width: 345px; height: 345px; }
  .page-template-page-accreditation .memberships-grid { grid-template-columns: 1fr; }
  .page-template-page-accreditation .advisory-inner { grid-template-columns: 1fr; gap: 3rem; }
  .page-template-page-accreditation .license-strip { flex-direction: column; align-items: flex-start; }
  .page-template-page-accreditation .award-section, .page-template-page-accreditation .memberships-section, .page-template-page-accreditation .advisory-section { padding: 5rem 6%; }
  .page-template-page-accreditation footer { grid-template-columns: 1fr; }
  .page-template-page-accreditation .footer-right { text-align: left; }
}
@media (max-width: 640px) {
  .page-template-page-accreditation h1 { font-size: 2.4rem; }
  .page-template-page-accreditation .award-badge { width: 220px; height: 220px; padding: 1.5rem; }
  .page-template-page-accreditation .award-ring { width: 265px; height: 265px; }
  .page-template-page-accreditation .award-ring-2 { width: 295px; height: 295px; }
  .page-template-page-accreditation .cta-actions { flex-direction: column; align-items: center; }
}
.page-template-page-accreditation .award-badge--photo { padding: 0; overflow: hidden; }
.page-template-page-accreditation .award-img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.page-template-page-accreditation .org-logo { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.page-template-page-accreditation .org-logo--light { filter: brightness(0) invert(1); opacity: 0.85; }

/* ===== kearney-location (scoped: .page-template-page-location) ===== */
:root { --cream: #F9F5EF;
    --warm-white: #FDFAF6;
    --sage: #7A9E7E;
    --sage-light: #A8C4AB;
    --sage-dark: #4D7A52;
    --terracotta: #C4765A;
    --terracotta-light: #E8A98F;
    --charcoal: #2C2C2C;
    --mid-gray: #6B6B6B;
    --light-gray: #E8E4DE;
    --border: #DDD8D0;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "DM Sans", sans-serif;
    --nav-h: 72px; }
.page-template-page-location nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    height: var(--nav-h);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 5%;
    background: rgba(253,250,246,0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s; }
.page-template-page-location .nav-brand span { display: block; font-size: 0.7rem; font-family: var(--font-body); letter-spacing: 0.12em; color: var(--mid-gray); text-transform: uppercase; font-weight: 400; }
.page-template-page-location .nav-links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); text-decoration: none; transition: color 0.2s; }
.page-template-page-location .nav-cta:hover { background: var(--sage-dark) !important; }
.page-template-page-location .page-hero { padding-top: var(--nav-h);
    min-height: 46vh;
    display: grid;
    grid-template-columns: 1fr 1fr; }
.page-template-page-location .page-hero-text { background: var(--cream);
    display: flex; flex-direction: column; justify-content: center;
    padding: 5rem 5% 5rem 8%; }
.page-template-page-location .page-eyebrow::before { content: ""; display: block; width: 2rem; height: 1px; background: var(--terracotta); }
.page-template-page-location h1 { font-family: var(--font-display);
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 300; line-height: 1.1; color: var(--charcoal); margin-bottom: 1.25rem; }
.page-template-page-location .hero-address { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300;
    color: var(--mid-gray); line-height: 1.6; margin-bottom: 2rem;
    border-left: 2px solid var(--sage);
    padding-left: 1rem; }
.page-template-page-location .hero-quickinfo { display: flex; flex-direction: column; gap: 0.6rem; }
.page-template-page-location .hero-quickinfo-item { display: flex; align-items: center; gap: 0.75rem;
    font-size: 0.85rem; color: var(--mid-gray); }
.page-template-page-location .hero-quickinfo-item svg { color: var(--sage); flex-shrink: 0; }
.page-template-page-location .hero-quickinfo-item a { color: var(--charcoal); text-decoration: none; }
.page-template-page-location .hero-quickinfo-item a:hover { color: var(--sage-dark); }
.page-template-page-location .page-hero-img img { width: 100%; height: 100%;
    object-fit: cover; object-position: center top;
    filter: brightness(0.85) saturate(0.85); }
.page-template-page-location .page-hero-img::after { content: "";
    position: absolute; inset: 0;
    background: linear-gradient(to right, rgba(249,245,239,0.3) 0%, transparent 50%); }
.page-template-page-location .section-label::before { content: ""; display: block; width: 1.5rem; height: 1px; background: var(--terracotta); }
.page-template-page-location .btn-primary:hover { background: #b36347; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,118,90,0.3); }
.page-template-page-location .btn-outline { display: inline-flex; align-items: center; gap: 0.75rem;
    border: 1px solid var(--charcoal); color: var(--charcoal);
    padding: 0.9rem 2rem; text-decoration: none;
    font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase;
    font-family: var(--font-body); font-weight: 500;
    border-radius: 2px; transition: all 0.25s; }
.page-template-page-location .map-section { background: var(--warm-white);
    display: grid; grid-template-columns: 1fr 420px;
    min-height: 560px; }
.page-template-page-location .map-embed { position: relative; overflow: hidden;
    background: var(--light-gray); }
.page-template-page-location .map-embed iframe { width: 100%; height: 100%;
    border: none; display: block;
    filter: grayscale(15%) contrast(1.02); }
.page-template-page-location .map-info { background: var(--cream);
    padding: 4rem 3rem;
    display: flex; flex-direction: column;
    border-left: 1px solid var(--border);
    overflow-y: auto; }
.page-template-page-location .map-info-title { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 2rem; padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border); }
.page-template-page-location .info-group { margin-bottom: 2rem; }
.page-template-page-location .info-group:last-of-type { margin-bottom: 0; }
.page-template-page-location .info-group-label { font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 0.75rem;
    display: flex; align-items: center; gap: 0.5rem; }
.page-template-page-location .info-group-label svg { flex-shrink: 0; }
.page-template-page-location .info-group-value { font-size: 0.92rem; color: var(--charcoal); line-height: 1.7; }
.page-template-page-location .info-group-value a { color: var(--charcoal); text-decoration: none; }
.page-template-page-location .info-group-value a:hover { color: var(--sage-dark); text-decoration: underline; text-underline-offset: 3px; }
.page-template-page-location .directions-link { display: inline-flex; align-items: center; gap: 0.6rem;
    margin-top: 2rem; padding: 0.75rem 1.25rem;
    background: var(--charcoal); color: white;
    text-decoration: none; border-radius: 2px;
    font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
    font-weight: 500; transition: background 0.2s;
    width: 100%; justify-content: center; }
.page-template-page-location .directions-link:hover { background: var(--sage-dark); }
.page-template-page-location .details-section { background: var(--warm-white);
    padding: 6rem 8%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 5rem;
    border-top: 1px solid var(--border); }
.page-template-page-location .details-block h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 1.5rem; padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; gap: 0.75rem; }
.page-template-page-location .details-block h3 svg { color: var(--sage); }
.page-template-page-location .details-block p { font-size: 0.92rem; color: var(--mid-gray); line-height: 1.9;
    margin-bottom: 1rem; }
.page-template-page-location .details-block p:last-child { margin-bottom: 0; }
.page-template-page-location .detail-note { margin-top: 1.5rem;
    background: var(--cream); border-left: 3px solid var(--terracotta);
    padding: 1rem 1.25rem; border-radius: 0 2px 2px 0;
    font-size: 0.82rem; color: var(--mid-gray); line-height: 1.75;
    display: flex; gap: 0.75rem; align-items: flex-start; }
.page-template-page-location .detail-note svg { flex-shrink: 0; color: var(--terracotta); margin-top: 2px; }
.page-template-page-location .neighbourhood-section { background: var(--cream);
    padding: 6rem 8%; }
.page-template-page-location .neighbourhood-intro { max-width: 600px; margin-bottom: 4rem; }
.page-template-page-location .neighbourhood-intro p { font-size: 0.95rem; color: var(--mid-gray); line-height: 1.9; margin-bottom: 1rem; }
.page-template-page-location .restaurant-grid { display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 1.5px; background: var(--border);
    border: 1.5px solid var(--border); border-radius: 2px; overflow: hidden; }
.page-template-page-location .restaurant-card { background: white; padding: 1.75rem 1.5rem;
    transition: background 0.2s; }
.page-template-page-location .restaurant-card:hover { background: var(--warm-white); }
.page-template-page-location .restaurant-icon { color: var(--sage); margin-bottom: 0.75rem; }
.page-template-page-location .restaurant-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.2rem; }
.page-template-page-location .restaurant-type { font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
    color: var(--mid-gray); }
.page-template-page-location .info-strip { background: var(--charcoal);
    padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr); }
.page-template-page-location .strip-item { padding: 3.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.08);
    display: flex; gap: 1.5rem; align-items: flex-start; }
.page-template-page-location .strip-item:last-child { border-right: none; }
.page-template-page-location .strip-icon { color: var(--sage-light); flex-shrink: 0; margin-top: 2px; }
.page-template-page-location .strip-label { font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase;
    color: rgba(255,255,255,0.35); margin-bottom: 0.4rem; }
.page-template-page-location .strip-value { font-family: var(--font-display); font-size: 1.2rem; font-weight: 300;
    color: white; line-height: 1.4; }
.page-template-page-location .strip-value a { color: white; text-decoration: none; }
.page-template-page-location .strip-value a:hover { color: var(--sage-light); }
.page-template-page-location .strip-sub { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 0.3rem; }
.page-template-page-location .cta-section { background: var(--cream);
    padding: 6rem 8%; text-align: center; }
.page-template-page-location .cta-section p { color: var(--mid-gray); max-width: 480px;
    margin: 0 auto 2.5rem; line-height: 1.85; }
.page-template-page-location .cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.page-template-page-location .footer-brand { font-family: var(--font-display); font-size: 1rem; font-weight: 300; color: rgba(255,255,255,0.85); margin-bottom: 0.25rem; }
.page-template-page-location .footer-links a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.72rem; letter-spacing: 0.08em; transition: color 0.2s; }
@media (max-width: 1100px) {
  .page-template-page-location .map-section { grid-template-columns: 1fr 360px; }
}
@media (max-width: 960px) {
  .page-template-page-location .page-hero { grid-template-columns: 1fr; }
  .page-template-page-location .page-hero-img { min-height: 50vw; order: -1; }
  .page-template-page-location .page-hero-text { padding: 3.5rem 6%; }
  .page-template-page-location .map-section { grid-template-columns: 1fr; }
  .page-template-page-location .map-embed { min-height: 380px; }
  .page-template-page-location .map-info { border-left: none; border-top: 1px solid var(--border); padding: 2.5rem 6%; }
  .page-template-page-location .details-section { grid-template-columns: 1fr; gap: 3rem; padding: 4rem 6%; }
  .page-template-page-location .neighbourhood-section { padding: 4rem 6%; }
  .page-template-page-location .restaurant-grid { grid-template-columns: 1fr 1fr; }
  .page-template-page-location .info-strip { grid-template-columns: 1fr; }
  .page-template-page-location .strip-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 2.5rem 6%; }
  .page-template-page-location .strip-item:last-child { border-bottom: none; }
  .page-template-page-location footer { grid-template-columns: 1fr; }
  .page-template-page-location .footer-right { text-align: left; }
}
@media (max-width: 640px) {
  .page-template-page-location h1 { font-size: 2.4rem; }
  .page-template-page-location .restaurant-grid { grid-template-columns: 1fr 1fr; }
  .page-template-page-location .cta-actions { flex-direction: column; align-items: center; }
}

/* ===== kearney-contact (scoped: .page-template-page-contact) ===== */
.page-template-page-contact .hero-sub { font-size: 1rem; color: rgba(255,255,255,0.6);
    max-width: 480px; line-height: 1.85; }
.page-template-page-contact .hero-contact-pills { display: flex; flex-direction: column; gap: 1rem; align-self: flex-end; }
.page-template-page-contact .hero-pill { background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    border-radius: 2px; padding: 1rem 1.5rem;
    display: flex; align-items: center; gap: 1rem;
    text-decoration: none; transition: background 0.2s; }
.page-template-page-contact .hero-pill:hover { background: rgba(255,255,255,0.14); }
.page-template-page-contact .hero-pill-icon { color: var(--sage-light); flex-shrink: 0; }
.page-template-page-contact .hero-pill-label { font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.4); margin-bottom: 0.1rem; }
.page-template-page-contact .hero-pill-value { font-size: 0.92rem; color: white; font-weight: 400; }
.page-template-page-contact .contact-main { background: var(--warm-white);
    padding: 7rem 8%;
    display: grid; grid-template-columns: 1fr 1.15fr; gap: 7rem; align-items: start; }
.page-template-page-contact .contact-info-col .section-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--terracotta); margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem; }
.page-template-page-contact .contact-info-col .section-label::before { content: ""; display: block; width: 1.5rem; height: 1px; background: var(--terracotta); }
.page-template-page-contact .contact-info-col > p { font-size: 0.95rem; color: var(--mid-gray);
    line-height: 1.9; margin-bottom: 2.5rem; max-width: 400px; }
.page-template-page-contact .contact-detail-list { display: flex; flex-direction: column; gap: 0; margin-bottom: 2.5rem; }
.page-template-page-contact .contact-detail { display: flex; gap: 1.25rem; align-items: flex-start;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border); }
.page-template-page-contact .contact-detail:first-child { border-top: 1px solid var(--border); }
.page-template-page-contact .contact-detail-icon { width: 38px; height: 38px; border-radius: 2px;
    background: var(--cream); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--sage); }
.page-template-page-contact .contact-detail-text h4 { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--mid-gray); margin-bottom: 0.2rem; font-weight: 500; }
.page-template-page-contact .contact-detail-text p { font-size: 0.92rem; color: var(--charcoal); line-height: 1.5; }
.page-template-page-contact .contact-detail-text a { color: var(--charcoal); text-decoration: none;
    transition: color 0.2s; }
.page-template-page-contact .contact-detail-text a:hover { color: var(--sage-dark); }
.page-template-page-contact .privacy-note { background: var(--cream); border-radius: 2px;
    padding: 1.25rem 1.5rem;
    border-left: 3px solid var(--sage);
    font-size: 0.8rem; color: var(--mid-gray); line-height: 1.75;
    display: flex; gap: 0.75rem; align-items: flex-start; }
.page-template-page-contact .privacy-note svg { flex-shrink: 0; color: var(--sage); margin-top: 2px; }
.page-template-page-contact .contact-form-col { background: var(--cream);
    border-radius: 2px;
    padding: 3rem;
    border: 1px solid var(--border); }
.page-template-page-contact .form-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.4rem; }
.page-template-page-contact .form-sub { font-size: 0.85rem; color: var(--mid-gray);
    line-height: 1.75; margin-bottom: 2rem;
    padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.page-template-page-contact .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.page-template-page-contact .field { margin-bottom: 1.15rem; }
.page-template-page-contact .field label { display: block; font-size: 0.68rem; letter-spacing: 0.1em;
    text-transform: uppercase; color: var(--mid-gray);
    margin-bottom: 0.4rem; font-weight: 500; }
.page-template-page-contact .field input, .page-template-page-contact .field textarea, .page-template-page-contact .field select { width: 100%; padding: 0.8rem 1rem;
    border: 1px solid var(--border); background: white;
    font-family: var(--font-body); font-size: 0.9rem; color: var(--charcoal);
    border-radius: 2px; outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    -webkit-appearance: none; }
.page-template-page-contact .field input:focus, .page-template-page-contact .field textarea:focus, .page-template-page-contact .field select:focus { border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(122,158,126,0.1); }
.page-template-page-contact .field textarea { resize: vertical; min-height: 130px; }
.page-template-page-contact .field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B6B6B' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; cursor: pointer; }
.page-template-page-contact .submit-btn { width: 100%; padding: 1rem 2rem;
    background: var(--terracotta); color: white;
    border: none; border-radius: 2px; cursor: pointer;
    font-family: var(--font-body); font-size: 0.8rem;
    letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    transition: all 0.25s; margin-top: 0.5rem; }
.page-template-page-contact .submit-btn:hover { background: #b36347; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,118,90,0.3); }
.page-template-page-contact .submit-btn svg { transition: transform 0.2s; }
.page-template-page-contact .submit-btn:hover svg { transform: translateX(4px); }
.page-template-page-contact .submit-btn.success { background: var(--sage); transform: none; box-shadow: none; }
.page-template-page-contact .form-footer-note { font-size: 0.73rem; color: var(--mid-gray);
    line-height: 1.65; margin-top: 1rem; text-align: center; }
.page-template-page-contact .success-state { display: none; text-align: center; padding: 3rem 2rem;
    flex-direction: column; align-items: center; gap: 1rem; }
.page-template-page-contact .success-state.visible { display: flex; }
.page-template-page-contact .success-icon { width: 64px; height: 64px; border-radius: 50%;
    background: var(--sage); display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 0.5rem; }
.page-template-page-contact .success-title { font-family: var(--font-display); font-size: 1.6rem; font-weight: 300;
    color: var(--charcoal); }
.page-template-page-contact .success-sub { font-size: 0.87rem; color: var(--mid-gray); line-height: 1.75; max-width: 300px; }
.page-template-page-contact .reassurance-strip { background: var(--cream);
    padding: 0;
    display: grid; grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border); }
.page-template-page-contact .reassurance-item { padding: 3rem 2.5rem;
    border-right: 1px solid var(--border);
    display: flex; gap: 1.25rem; align-items: flex-start; }
.page-template-page-contact .reassurance-item:last-child { border-right: none; }
.page-template-page-contact .reassurance-icon { color: var(--sage); flex-shrink: 0; margin-top: 2px; }
.page-template-page-contact .reassurance-item h4 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.3rem; }
.page-template-page-contact .reassurance-item p { font-size: 0.82rem; color: var(--mid-gray); line-height: 1.75; }
.page-template-page-contact .photo-break { position: relative; height: 420px; overflow: hidden; }
.page-template-page-contact .photo-break img { width: 100%; height: 100%;
    object-fit: cover; object-position: center 25%;
    filter: brightness(0.65) saturate(0.85); }
.page-template-page-contact .photo-break-overlay { position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(44,44,44,0.65) 0%, rgba(77,122,82,0.35) 100%); }
.page-template-page-contact .photo-break-content { position: absolute; inset: 0; z-index: 2;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 3rem;
    text-align: center; }
.page-template-page-contact .photo-break-content blockquote { font-family: var(--font-display); font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    font-weight: 300; font-style: italic; color: white;
    line-height: 1.45; max-width: 680px; margin-bottom: 1.5rem; }
.page-template-page-contact .photo-break-content cite { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase;
    color: rgba(255,255,255,0.5); font-style: normal;
    display: flex; align-items: center; gap: 1rem; }
.page-template-page-contact .photo-break-content cite::before, .page-template-page-contact .photo-break-content cite::after { content: ""; display: block; width: 2rem; height: 1px;
    background: rgba(255,255,255,0.25); }
@media (max-width: 1024px) {
  .page-template-page-contact .contact-main { grid-template-columns: 1fr; gap: 4rem; padding: 5rem 6%; }
  .page-template-page-contact .contact-info-col > p { max-width: 100%; }
}
@media (max-width: 960px) {
  .page-template-page-contact .reassurance-strip { grid-template-columns: 1fr 1fr; }
  .page-template-page-contact .reassurance-item { padding: 2rem 1.75rem; }
}
@media (max-width: 640px) {
  .page-template-page-contact .reassurance-strip { grid-template-columns: 1fr; }
  .page-template-page-contact .reassurance-item { border-right: none;
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 5%; }
  .page-template-page-contact .reassurance-item:last-child { border-bottom: none; }
}

/* ===== 404 Page (404.php — global, unique classes) ===== */

  .error-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .error-left {
    background: var(--charcoal);
    display: flex; flex-direction: column;
    justify-content: center; padding: 6rem 8%;
    position: relative; overflow: hidden;
  }
  /* Decorative tree */
  .error-tree {
    position: absolute; right: -40px; bottom: -40px;
    width: 65%; opacity: 0.06;
  }
  .error-num {
    font-family: var(--font-display);
    font-size: clamp(6rem, 14vw, 11rem);
    font-weight: 300; line-height: 1; color: white;
    letter-spacing: -0.02em; margin-bottom: 0.5rem;
    position: relative; z-index: 1;
  }
  .error-num em { color: var(--sage-light); font-style: italic; }
  .error-eyebrow {
    font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--terracotta-light); margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
    position: relative; z-index: 1;
  }
  .error-eyebrow::before {
    content: ''; display: block; width: 2rem; height: 1px;
    background: var(--terracotta-light);
  }
  .error-title {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 300; color: white; line-height: 1.2;
    margin-bottom: 1rem; position: relative; z-index: 1;
  }
  .error-sub {
    font-size: 0.92rem; color: rgba(255,255,255,0.5);
    line-height: 1.85; max-width: 380px;
    position: relative; z-index: 1;
  }

  .error-right {
    background: var(--cream);
    display: flex; flex-direction: column;
    justify-content: center; padding: 6rem 8%;
  }
  .error-right h2 {
    font-family: var(--font-display); font-size: 1.5rem; font-weight: 400;
    color: var(--charcoal); margin-bottom: 0.5rem;
  }
  .error-right > p {
    font-size: 0.88rem; color: var(--mid-gray); margin-bottom: 2.5rem; line-height: 1.8;
  }

  /* Page links */
  .error-links {
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 3rem;
  }
  .error-link {
    display: flex; align-items: center; gap: 1rem;
    padding: 1rem 0; border-bottom: 1px solid var(--border);
    text-decoration: none; color: var(--charcoal);
    font-size: 0.9rem; transition: color 0.2s;
  }
  .error-link:first-child { border-top: 1px solid var(--border); }
  .error-link:hover { color: var(--sage-dark); }
  .error-link:hover .error-link-arrow { transform: translateX(4px); }
  .error-link-icon { color: var(--sage); flex-shrink: 0; }
  .error-link-label { flex: 1; }
  .error-link-arrow {
    color: var(--border); transition: transform 0.2s, color 0.2s;
    flex-shrink: 0;
  }
  .error-link:hover .error-link-arrow { color: var(--sage); }

  /* Contact card */
  .error-contact {
    background: white; border: 1px solid var(--border);
    border-radius: 2px; padding: 1.5rem;
    display: flex; gap: 1rem; align-items: center;
  }
  .error-contact-icon {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--sage); display: flex;
    align-items: center; justify-content: center;
    flex-shrink: 0; color: white;
  }
  .error-contact-label { font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid-gray); margin-bottom: 0.15rem; }
  .error-contact-value { font-size: 0.95rem; color: var(--charcoal); }
  .error-contact-value a { color: var(--charcoal); text-decoration: none; }
  .error-contact-value a:hover { color: var(--sage-dark); }

  /* Footer strip */
  .error-footer {
    position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--charcoal); padding: 1rem 5%;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 0.72rem; color: rgba(255,255,255,0.35);
  }
  .error-footer a { color: rgba(255,255,255,0.35); text-decoration: none; }
  .error-footer a:hover { color: rgba(255,255,255,0.7); }

  @media (max-width: 768px) {
    .error-page { grid-template-columns: 1fr; min-height: auto; }
    .error-left { padding: 5rem 6%; min-height: 40vh; }
    .error-right { padding: 4rem 6% 6rem; }
    .error-footer { position: static; }
  }
