/* ============================================================================
   PREMIER CONCIERGE MEDICAL — shared stylesheet
   Used by all /pcm/ pages. Single source of truth for design tokens
   and layout primitives. Built for Cormorant Garamond (serif headers) +
   Inter (humanist sans body), forest/cream/gold premium concierge palette.
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette — locked, see directive */
  --forest: #0A3B7A;
  --forest-deep: #062647;
  --forest-soft: #10529F;
  --cream: #F8F4ED;
  --cream-deep: #ECE5D5;
  --gold: #C9A961;
  --gold-deep: #A38540;
  --gold-soft: #F5ECD9;
  --gold-border: #E5D5A8;
  --sage: #A9BED6;
  --sage-soft: #E8F0FA;
  --sage-deep: #3E6295;
  --charcoal: #2A2A28;
  --charcoal-soft: #5C5C58;
  --charcoal-mute: #8A8A86;
  --white: #FFFFFF;
  --line: #E5DFD3;
  --tbd: #6B7568;
  --shadow-soft: 0 1px 2px rgba(10, 59, 122, 0.04), 0 8px 24px rgba(10, 59, 122, 0.06);
  --shadow-card: 0 1px 3px rgba(10, 59, 122, 0.06), 0 12px 32px rgba(10, 59, 122, 0.08);
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  /* added: site-wide subtle marble brand texture — Sadeghi feedback Phase 7.
     Layers the same Augustine Wong marble used in the hero behind an 82%
     cream overlay so the texture reads as a quiet brand pattern (~18%
     marble visibility). Cream background-color is the fallback if the
     remote image fails to load. Sections with explicit backgrounds
     (.alt = white, .forest = dark, .hero--full gradient) override naturally. */
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(248,244,237,0.82), rgba(248,244,237,0.82)),
    url('https://images.unsplash.com/photo-1566041510394-cf7c8fe21800?auto=format&fit=crop&w=2400&q=70');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--charcoal);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1, "ss01" 1;
}
/* added: iOS Safari mis-renders background-attachment: fixed (long-standing
   bug); fall back to scroll on touch viewports so the body background still
   shows the marble, just not parallax. — Phase 7 */
@media (max-width: 768px) {
  body { background-attachment: scroll; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--forest);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.55rem); font-weight: 500; }
h3 { font-size: clamp(1.25rem, 2.3vw, 1.55rem); font-weight: 500; }
h4 { font-size: 1.1rem; font-weight: 600; }
em { font-style: italic; color: var(--gold-deep); }

p { margin-bottom: 1rem; max-width: 70ch; }
p:last-child { margin-bottom: 0; }

a { color: var(--forest); text-decoration: underline; text-decoration-color: rgba(201, 169, 97, 0.4); text-underline-offset: 3px; transition: color 0.15s, text-decoration-color 0.15s; }
a:hover { color: var(--gold-deep); text-decoration-color: var(--gold-deep); }

::selection { background: var(--gold-soft); color: var(--forest-deep); }

img { max-width: 100%; height: auto; display: block; }

/* ============================================================================
   LAYOUT
   ========================================================================== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 760px; }
.container--medium { max-width: 940px; }

/* added: marble texture per Phase 8 — direct paint, fixes Phase 7 layering bug.
   Each default <section> now carries its own marble background so the texture
   is visible on cream content bands (not just through the semi-transparent
   nav). Section-level marble scrolls naturally with the section — DO NOT add
   background-attachment:fixed here; the body layer (Phase 7) handles fixed
   parallax. Sections with explicit background overrides (.alt = white,
   .forest = dark, .hero--full = own gradient, .concierge-panel = forest)
   reset all three background-* properties via the shorthand and remain
   solid as before. */
section {
  padding: 96px 0;
  background-color: var(--cream);
  background-image:
    linear-gradient(rgba(248,244,237,0.82), rgba(248,244,237,0.82)),
    url('https://images.unsplash.com/photo-1566041510394-cf7c8fe21800?auto=format&fit=crop&w=2400&q=70');
  background-size: cover;
  background-position: center;
}
section.tight { padding: 64px 0; }
section.alt { background: var(--white); }
section.forest { background: var(--forest); color: var(--cream); }
section.forest h1, section.forest h2, section.forest h3 { color: var(--cream); }
section.forest em { color: var(--gold); }
section.forest a { color: var(--gold); text-decoration-color: rgba(201, 169, 97, 0.5); }
section.forest a:hover { color: var(--white); }

.eyebrow { display: inline-block; font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 18px; }
.eyebrow.on-forest { color: var(--gold); }

.lead { font-size: clamp(1.05rem, 1.8vw, 1.2rem); color: var(--charcoal-soft); line-height: 1.6; max-width: 640px; }
section.forest .lead { color: rgba(248, 244, 237, 0.85); }

/* TO CONFIRM marker — sage italic, low-key */
.tbd { font-style: italic; color: var(--sage-deep); font-size: 0.86em; }
.tbd::before { content: "[ "; opacity: 0.7; }
.tbd::after { content: " ]"; opacity: 0.7; }

/* ============================================================================
   HEADER + NAV
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 244, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.site-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { text-decoration: none; display: inline-flex; align-items: center; gap: 12px; }
.site-brand:hover { color: var(--forest); text-decoration: none; }
.site-brand-mark { width: 32px; height: 32px; flex-shrink: 0; }
.site-brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.site-brand-name { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: 1.1rem; color: var(--forest); letter-spacing: 0.005em; }
.site-brand-tag { font-family: 'Inter', sans-serif; font-size: 0.62rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-deep); margin-top: 2px; }
/* Approved lockup artwork ships as one piece at all widths — scales, never crops or splits.
   max-width:none: the global img{max-width:100%} collapses an auto-width image to 0 inside a
   shrinkable flex item (circular constraint), so opt the lockup out and pin the flex item. */
.site-brand { flex-shrink: 0; }
.site-brand-lockup { height: 80px; width: auto; max-width: none; display: block; }
.footer-brand-lockup { height: 52px; width: auto; max-width: none; display: block; }
@media (max-width: 480px) {
  /* 52px is the tallest one-piece lockup that keeps brand + CTA + menu toggle on one
     line at 390px (60px pushed the CTA past the viewport edge) */
  .site-brand-lockup { height: 52px; }
  .site-header-inner { gap: 8px; }
}

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a, .site-nav .has-dropdown > button {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 6px;
  text-decoration: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.15s, background 0.15s;
  white-space: nowrap;
}
.site-nav a:hover, .site-nav .has-dropdown > button:hover { color: var(--gold-deep); background: var(--gold-soft); }
.site-nav a.is-current { color: var(--gold-deep); font-weight: 600; }

.has-dropdown { position: relative; }
.dropdown-panel {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow-card);
  padding: 8px;
  display: none;
  z-index: 110;
}
.has-dropdown:hover .dropdown-panel,
.has-dropdown:focus-within .dropdown-panel { display: block; }
.dropdown-panel a { display: block; padding: 8px 12px; font-size: 0.9rem; border-radius: 6px; }

.btn-schedule {
  background: var(--gold);
  color: var(--forest-deep);
  padding: 10px 20px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 0;
  letter-spacing: 0.005em;
  transition: background 0.15s, transform 0.15s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.btn-schedule:hover { background: var(--gold-deep); color: var(--white); text-decoration: none; transform: translateY(-1px); }

/* 769-1500px: tighten nav metrics so the 80px lockup + all links + CTA hold one row down to
   1280. Must sit AFTER the base .site-nav/.btn-schedule rules — same specificity, source
   order decides. */
/* v4.18: band extended from (max-width:1500px) to all desktop widths and
   tightened — the 11th top-level item (Skincare) overflowed the viewport at
   1280–1500 and the uncompressed nav no longer fit 1501–1919 either. */
@media (min-width: 769px) {
  .site-header-inner { gap: 10px; }
  .site-nav { gap: 2px; }
  .site-nav a, .site-nav .has-dropdown > button { padding: 6px 5px; font-size: 0.77rem; }
  .btn-schedule { padding: 9px 12px; font-size: 0.8rem; }
}

.menu-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; color: var(--forest); }
.menu-toggle svg { width: 24px; height: 24px; }

.mobile-nav { display: none; padding: 16px 0; border-top: 1px solid var(--line); margin-top: 18px; }
.mobile-nav.is-open { display: block; }
.mobile-nav a { display: block; padding: 12px 0; font-size: 0.95rem; border-bottom: 1px solid var(--sage-soft); }
.mobile-nav a:last-of-type { border-bottom: 0; }
.mobile-nav summary { padding: 12px 0; cursor: pointer; font-weight: 500; list-style: none; border-bottom: 1px solid var(--sage-soft); }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary::after { content: "+"; float: right; }
.mobile-nav details[open] summary::after { content: "−"; }
.mobile-nav details a { padding-left: 16px; font-size: 0.9rem; color: var(--charcoal-soft); border-bottom: 0; }

/* ============================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: 120px 0 96px;
  overflow: hidden;
  isolation: isolate;
}
.hero--full {
  min-height: 80vh;
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.hero--banner {
  background: var(--white);
  padding: 80px 0 64px;
  border-bottom: 1px solid var(--line);
}
.hero-bg-image {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.34;
  background-size: cover;
  background-position: center;
  filter: saturate(0.78) brightness(0.96);
}
.hero-bg-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(248,244,237,0.4) 0%, rgba(248,244,237,0.85) 100%);
}
.hero h1 { margin-bottom: 24px; max-width: 18ch; }
.hero h1 em { font-style: italic; color: var(--gold-deep); }
.hero .lead { margin-bottom: 36px; }

.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 14px 26px; border-radius: 8px; font-family: 'Inter', sans-serif; font-size: 0.94rem; font-weight: 600; text-decoration: none; border: 0; cursor: pointer; transition: all 0.15s; letter-spacing: 0.005em; }
.btn-primary { background: var(--gold); color: var(--forest-deep); }
.btn-primary:hover { background: var(--gold-deep); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--forest); border: 1.5px solid var(--forest); }
.btn-outline:hover { background: var(--forest); color: var(--cream); text-decoration: none; }
.btn-forest { background: var(--forest); color: var(--cream); }
.btn-forest:hover { background: var(--forest-deep); color: var(--white); text-decoration: none; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--forest); border: 1px solid var(--line); }
.btn-ghost:hover { border-color: var(--forest); background: var(--white); text-decoration: none; }
.btn--lg { padding: 16px 32px; font-size: 1rem; }

/* ============================================================================
   COMPONENTS
   ========================================================================== */

/* Brand promise band (3-column with botanical divider) */
.promise-band { background: var(--white); padding: 48px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; align-items: start; }
.promise-cell { text-align: center; padding: 0 16px; }
.promise-cell-mark { width: 28px; height: 28px; margin: 0 auto 12px; color: var(--gold-deep); }
.promise-cell h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
.promise-cell p { font-size: 0.9rem; color: var(--charcoal-soft); margin: 0 auto; max-width: 28ch; }

/* About snapshot (2-col image + text) */
.split { display: grid; grid-template-columns: 5fr 6fr; gap: 64px; align-items: center; }
.split--reversed { grid-template-columns: 6fr 5fr; }
.split--reversed .split-image { order: 2; }
.split-image { aspect-ratio: 4/5; background-size: cover; background-position: center; border-radius: 4px; box-shadow: var(--shadow-card); }
.split-image--landscape { aspect-ratio: 4/3; }
.split-text > p:not(:last-child) { margin-bottom: 18px; }

/* Service tile grid */
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.service-tile { background: var(--white); padding: 32px 28px; transition: background 0.15s; text-decoration: none; color: var(--charcoal); display: block; min-height: 200px; position: relative; }
.service-tile:hover { background: var(--cream); text-decoration: none; }
.service-tile:hover .service-tile-arrow { color: var(--gold-deep); transform: translateX(2px); }
.service-tile-mark { width: 26px; height: 26px; color: var(--sage-deep); margin-bottom: 16px; }
.service-tile h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.service-tile p { font-size: 0.86rem; color: var(--charcoal-soft); margin-bottom: 18px; line-height: 1.55; }
.service-tile-arrow { font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--charcoal-mute); font-weight: 600; transition: color 0.15s, transform 0.15s; display: inline-block; position: absolute; bottom: 24px; left: 28px; }

/* Concierge preview panel */
.concierge-panel { background: var(--forest); color: var(--cream); padding: 88px 0; position: relative; overflow: hidden; }
.concierge-panel::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--gold); }
.concierge-panel h2 { color: var(--cream); max-width: 22ch; margin-bottom: 20px; }
.concierge-panel h2 em { color: var(--gold); }
.concierge-panel p { color: rgba(248, 244, 237, 0.88); max-width: 56ch; margin-bottom: 20px; }
.concierge-panel-cta { display: inline-flex; align-items: center; gap: 8px; color: var(--gold); font-weight: 600; text-decoration: underline; text-decoration-color: rgba(201, 169, 97, 0.3); }
.concierge-panel-cta:hover { color: var(--white); }

/* Provider cards */
.provider-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.provider-grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); max-width: 820px; margin: 0 auto; }
.provider-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; transition: transform 0.18s, box-shadow 0.18s; text-decoration: none; color: var(--charcoal); display: block; }
.provider-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); text-decoration: none; }
.provider-silhouette { aspect-ratio: 4/5; background: var(--sage-soft); display: flex; align-items: flex-end; justify-content: center; position: relative; overflow: hidden; }
.provider-silhouette svg { width: 65%; height: auto; color: var(--sage); }
.provider-silhouette-tag { position: absolute; bottom: 12px; right: 12px; font-family: 'Inter', sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; color: var(--sage-deep); background: rgba(248, 244, 237, 0.85); padding: 3px 8px; border-radius: 999px; }
.provider-card-body { padding: 24px 28px 28px; }
.provider-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; color: var(--forest); margin-bottom: 4px; }
.provider-card-title { font-size: 0.86rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 12px; }
.provider-card-spec { font-size: 0.9rem; color: var(--charcoal-soft); line-height: 1.55; }

/* Provider profile (full bio page) */
.provider-profile { display: grid; grid-template-columns: 5fr 7fr; gap: 56px; align-items: start; padding: 64px 0; border-bottom: 1px solid var(--line); }
.provider-profile:last-child { border-bottom: 0; }
.provider-profile .provider-silhouette { aspect-ratio: 4/5; border-radius: 4px; }
.provider-profile h2 { font-size: clamp(1.85rem, 3.5vw, 2.4rem); margin-bottom: 4px; }
.provider-profile-role { font-size: 0.95rem; color: var(--gold-deep); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 24px; }
.provider-profile h4 { font-family: 'Inter', sans-serif; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage-deep); margin: 24px 0 8px; }

/* Quote pull (testimonial) */
.quote { background: var(--white); padding: 36px 32px; border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; box-shadow: var(--shadow-soft); }
.quote-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; line-height: 1.55; color: var(--forest); margin-bottom: 16px; max-width: none; }
.quote-attribution { font-size: 0.82rem; color: var(--charcoal-soft); font-weight: 500; }

/* Reviews badge */
.reviews-badge { display: inline-flex; align-items: center; gap: 12px; padding: 12px 20px; background: var(--white); border: 1px solid var(--line); border-radius: 999px; font-size: 0.88rem; }
.reviews-badge-stars { color: var(--gold); letter-spacing: 0.05em; }
.reviews-badge-count { font-weight: 600; color: var(--forest); }

/* Pillars grid (4 promises in concierge page) */
.pillars { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 40px; }
.pillar { background: rgba(248, 244, 237, 0.06); border-left: 3px solid var(--gold); padding: 24px 28px; border-radius: 0 4px 4px 0; }
.pillar h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 500; color: var(--cream); margin-bottom: 6px; }
.pillar p { color: rgba(248, 244, 237, 0.80); font-size: 0.92rem; line-height: 1.55; }

/* Benefit list (membership detailed) */
.benefits { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 32px; }
.benefits li { padding: 12px 0 12px 24px; position: relative; font-size: 0.95rem; color: var(--charcoal); border-bottom: 1px solid var(--line); }
.benefits li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-weight: 700; }

/* Card grid (3-col content cards) */
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 32px 28px; }
.card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--forest); margin-bottom: 10px; }
.card p { font-size: 0.94rem; color: var(--charcoal-soft); line-height: 1.6; }
.card-mark { width: 26px; height: 26px; color: var(--gold-deep); margin-bottom: 18px; }

/* Subsection (long-form service descriptions) */
.subsection { margin: 48px 0; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.subsection:last-child { border-bottom: 0; padding-bottom: 0; }
.subsection h3 { font-size: clamp(1.45rem, 2.6vw, 1.85rem); font-weight: 500; margin-bottom: 12px; color: var(--forest); }
.subsection-meta { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-bottom: 12px; }
.subsection ul { list-style: none; margin-top: 16px; }
.subsection ul li { padding: 8px 0 8px 22px; position: relative; line-height: 1.65; }
.subsection ul li::before { content: "—"; position: absolute; left: 0; color: var(--sage); font-weight: 600; }

/* FAQ accordion */
.faq { background: var(--white); border: 1px solid var(--line); border-radius: 4px; margin-bottom: 8px; }
.faq summary { padding: 20px 28px; cursor: pointer; font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 500; color: var(--forest); list-style: none; position: relative; padding-right: 56px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 28px; top: 18px; font-family: 'Inter', sans-serif; font-size: 1.4rem; color: var(--gold-deep); font-weight: 300; transition: transform 0.2s; }
.faq[open] summary::after { content: "−"; }
.faq-body { padding: 0 28px 24px; color: var(--charcoal-soft); font-size: 0.95rem; line-height: 1.6; }

/* Form (contact page) */
.form-row { margin-bottom: 18px; }
.form-row label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--charcoal-soft); margin-bottom: 6px; }
.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-row textarea { min-height: 120px; resize: vertical; line-height: 1.55; }
.form-disclaimer { background: var(--sage-soft); border-left: 3px solid var(--sage-deep); padding: 14px 18px; border-radius: 0 4px 4px 0; font-size: 0.86rem; color: var(--charcoal-soft); margin-bottom: 24px; line-height: 1.55; }
.form-disclaimer strong { color: var(--forest); }
.submit-error { color: #b91c1c; font-size: 0.9rem; margin-top: 12px; padding: 12px 14px; background: #fef2f2; border: 1px solid #fecaca; border-radius: 6px; }
.submit-error[hidden] { display: none; }
.submit-success { color: var(--forest); font-size: 0.95rem; margin-top: 14px; padding: 16px 20px; background: var(--cream); border-left: 3px solid var(--gold); border-radius: 0 4px 4px 0; }
.submit-success[hidden] { display: none; }

/* Section dividers / botanical flourish */
.flourish { width: 64px; height: 1px; background: var(--gold); margin: 32px auto; opacity: 0.6; }
.flourish-center { margin: 32px auto; }

/* Scroll indicator */
.scroll-cue { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-family: 'Inter', sans-serif; font-size: 0.66rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--sage-deep); display: flex; flex-direction: column; align-items: center; gap: 8px; opacity: 0.7; }
.scroll-cue::after { content: ""; width: 1px; height: 24px; background: var(--sage-deep); animation: scroll-pulse 2.4s ease-in-out infinite; }
@keyframes scroll-pulse { 0%, 100% { opacity: 0.3; } 50% { opacity: 1; } }

/* Pull quote / sentiment block (botanical break) */
.botanical-break { padding: 96px 24px; background-size: cover; background-position: center; min-height: 360px; display: flex; align-items: center; justify-content: center; position: relative; isolation: isolate; }
.botanical-break::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6, 38, 71, 0.45), rgba(6, 38, 71, 0.65)); z-index: -1; }
.botanical-break blockquote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.4rem, 3vw, 1.95rem); color: var(--cream); text-align: center; max-width: 720px; line-height: 1.45; }
.botanical-break blockquote::before { content: "\201C"; display: block; font-size: 3.5rem; color: var(--gold); line-height: 0.5; margin-bottom: 12px; }

/* Final CTA section */
/* corrected: Phase 7 transparent hack reverted — direct marble paint instead.
   No background property here; .final-cta inherits the section default marble
   from the rule above. Padding/text-align/border-top remain unique to the CTA. */
.final-cta { padding: 96px 0; text-align: center; border-top: 1px solid var(--line); }
.final-cta h2 { margin-bottom: 16px; }
.final-cta p { margin: 0 auto 32px; color: var(--charcoal-soft); }
.final-cta-row { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }
.final-cta-phone { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.2rem; color: var(--forest); margin-top: 24px; }
.final-cta-phone a { color: var(--forest); text-decoration: underline; text-decoration-color: var(--gold); }

/* ============================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--forest-deep); color: var(--sage-soft); padding: 64px 0 24px; position: relative; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent 0%, var(--gold) 30%, var(--gold) 70%, transparent 100%); opacity: 0.4; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-col h5 { font-family: 'Inter', sans-serif; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 18px; }
.footer-col p, .footer-col a { font-size: 0.9rem; color: rgba(169, 190, 214,0.85); }
.footer-col a { display: block; padding: 4px 0; text-decoration: none; }
.footer-col a:hover { color: var(--gold); text-decoration: underline; text-decoration-color: var(--gold); }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand-mark { width: 28px; height: 28px; color: var(--gold); }
.footer-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 500; color: var(--cream); }
.footer-aria { background: rgba(201, 169, 97, 0.08); border-left: 2px solid var(--gold); padding: 12px 16px; margin: 16px 0; border-radius: 0 4px 4px 0; }
.footer-aria-label { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.footer-aria-line { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--cream); }
.footer-aria-line a { color: var(--cream); display: inline; padding: 0; }
.footer-aria-line a:hover { color: var(--gold); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(169, 190, 214,0.12); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-size: 0.8rem; color: rgba(169, 190, 214,0.6); }
.footer-bottom a { color: rgba(169, 190, 214,0.7); padding: 0; display: inline; }
.footer-bottom a:hover { color: var(--gold); }
.footer-attribution { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; }

/* Social icons */
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; background: rgba(201, 169, 97, 0.10); display: inline-flex; align-items: center; justify-content: center; padding: 0; }
.footer-social a:hover { background: var(--gold); color: var(--forest-deep); text-decoration: none; }
.footer-social svg { width: 16px; height: 16px; }

/* ============================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  section { padding: 72px 0; }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split--reversed .split-image { order: 0; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .provider-grid { grid-template-columns: 1fr; }
  .provider-profile { grid-template-columns: 1fr; gap: 36px; padding: 48px 0; }
  .pillars { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 768px) {
  .site-nav, .has-dropdown { display: none; }
  .menu-toggle { display: inline-flex; }
  .btn-schedule { padding: 8px 14px; font-size: 0.82rem; }
  .promise-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero { padding: 80px 0 64px; }
  .hero--full { min-height: 60vh; }
  section { padding: 56px 0; }
  .concierge-panel { padding: 64px 0; }
  .botanical-break { padding: 64px 24px; min-height: 280px; }
  .final-cta { padding: 64px 0; }
  .scroll-cue { display: none; }
}
@media (max-width: 480px) {
  .container { padding: 0 18px; }
  .btn-schedule { padding: 7px 9px; font-size: 0.76rem; }
  .service-grid { grid-template-columns: 1fr; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
  .btn { padding: 12px 20px; font-size: 0.88rem; }
  .quote { padding: 24px 22px; }
  .quote-text { font-size: 1.05rem; }
  .faq summary { padding: 16px 22px; padding-right: 48px; font-size: 1.05rem; }
  .faq-body { padding: 0 22px 18px; }
}

/* ============================================================================
   PROVIDER PORTRAIT (illustrated SVG frame) — replaces .provider-silhouette
   ========================================================================== */
.provider-portrait {
  aspect-ratio: 4/5;
  background: var(--cream-deep);
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: inset 0 0 0 1px rgba(201, 169, 97, 0.45);
}
.provider-portrait::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 2px;
  pointer-events: none;
  opacity: 0.85;
}
.provider-portrait svg { width: 100%; height: 100%; display: block; }
.provider-portrait-caption {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--sage-deep);
  text-align: center;
  margin-top: 10px;
  letter-spacing: 0.01em;
}

/* ============================================================================
   PATIENT STORIES PAGE
   ========================================================================== */
.stories-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 0 4px 4px 0;
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.story-card-stars { color: var(--gold); letter-spacing: 0.04em; font-size: 0.95rem; }
.story-card-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; line-height: 1.55; color: var(--forest); margin: 0; max-width: none; }
.story-card-meta { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; font-size: 0.82rem; color: var(--charcoal-soft); margin-top: auto; padding-top: 6px; border-top: 1px solid var(--line); }
.story-card-author { font-weight: 600; color: var(--forest); }
.story-card-source { font-style: italic; font-size: 0.78rem; color: var(--sage-deep); }
@media (max-width: 760px) { .stories-grid { grid-template-columns: 1fr; } }

/* ============================================================================
   INSIGHTS BLOG
   ========================================================================== */
.insights-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 32px 32px 28px;
  text-decoration: none;
  color: var(--charcoal);
  display: block;
  transition: transform 0.18s, box-shadow 0.18s, border-color 0.18s;
}
.insight-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); border-color: var(--gold); text-decoration: none; }
.insight-card-meta { font-family: 'Inter', sans-serif; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 14px; }
.insight-card h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.45rem; font-weight: 500; color: var(--forest); margin-bottom: 12px; line-height: 1.25; }
.insight-card-excerpt { font-size: 0.94rem; color: var(--charcoal-soft); line-height: 1.6; margin-bottom: 16px; }
.insight-card-byline { font-size: 0.82rem; color: var(--sage-deep); font-style: italic; }
.insight-card-arrow { font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); font-weight: 600; margin-top: 16px; display: inline-block; }
@media (max-width: 760px) { .insights-grid { grid-template-columns: 1fr; } }

.insight-article-meta { display: flex; flex-wrap: wrap; gap: 18px; align-items: center; margin: 16px 0 36px; font-size: 0.86rem; color: var(--charcoal-soft); }
.insight-article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.insight-article-byline { font-style: italic; }
.insight-coming-soon {
  background: var(--cream);
  border-left: 3px solid var(--sage-deep);
  border-radius: 0 4px 4px 0;
  padding: 28px 32px;
  margin: 36px 0;
}
.insight-coming-soon h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 500; color: var(--forest); margin-bottom: 8px; }
.insight-coming-soon p { font-size: 0.95rem; color: var(--charcoal-soft); }

.insight-signup {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px 32px;
  margin: 36px 0;
}
.insight-signup h4 { font-family: 'Cormorant Garamond', serif; font-size: 1.35rem; font-weight: 500; color: var(--forest); margin-bottom: 6px; }
.insight-signup p { font-size: 0.92rem; color: var(--charcoal-soft); margin-bottom: 16px; }
.insight-signup-row { display: flex; gap: 10px; flex-wrap: wrap; }
.insight-signup-row input {
  flex: 1 1 240px;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--cream);
}
.insight-signup-row input:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15); }
.insight-signup-row button { padding: 12px 22px; border-radius: 6px; background: var(--forest); color: var(--cream); border: 0; font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.92rem; cursor: pointer; transition: background 0.15s; }
.insight-signup-row button:hover { background: var(--forest-deep); }
.insight-signup-status { margin-top: 12px; font-size: 0.88rem; }
.insight-signup-status.success { color: var(--forest); }
.insight-signup-status.error { color: #b91c1c; }

.insight-back { display: inline-flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--gold-deep); font-weight: 600; text-decoration: none; margin-top: 24px; }
.insight-back:hover { color: var(--forest); }

/* ============================================================================
   CHAT WIDGET — PCM virtual assistant (separate from oprantis.com aria-chat)
   ========================================================================== */
.pcm-c-fab {
  position: fixed;
  bottom: 22px;
  right: 22px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--gold);
  border: 0;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(6, 38, 71, 0.32), 0 1px 3px rgba(6, 38, 71, 0.18);
  z-index: 9990;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.18s, background 0.18s;
}
.pcm-c-fab:hover { background: var(--forest-deep); transform: translateY(-1px) scale(1.02); }
.pcm-c-fab svg { width: 28px; height: 28px; }
.pcm-c-fab::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  opacity: 0;
  animation: pcm-c-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes pcm-c-pulse {
  0%   { opacity: 0.6; transform: scale(0.95); }
  70%  { opacity: 0;   transform: scale(1.18); }
  100% { opacity: 0;   transform: scale(1.18); }
}
.pcm-c-fab.is-open { transform: scale(0.92); }
.pcm-c-fab.is-open::before { display: none; }
.pcm-c-fab[hidden] { display: none; }

.pcm-c-panel {
  position: fixed;
  bottom: 96px;
  right: 22px;
  width: 380px;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 130px);
  background: var(--cream);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(6, 38, 71, 0.28), 0 2px 6px rgba(6, 38, 71, 0.15);
  display: none;
  flex-direction: column;
  z-index: 9991;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 97, 0.3);
}
.pcm-c-panel.is-open { display: flex; }
.pcm-c-header {
  background: var(--forest);
  color: var(--cream);
  padding: 18px 22px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: relative;
}
.pcm-c-header-title { font-family: 'Cormorant Garamond', serif; font-size: 1.18rem; font-weight: 500; line-height: 1.2; }
.pcm-c-header-sub { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.84rem; color: rgba(248, 244, 237, 0.78); line-height: 1.45; }
.pcm-c-header-sub a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201, 169, 97, 0.5); }
.pcm-c-header-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(248, 244, 237, 0.1);
  color: var(--cream);
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
}
.pcm-c-header-close:hover { background: rgba(248, 244, 237, 0.2); }

.pcm-c-body {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--cream);
}
.pcm-c-msg {
  max-width: 84%;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  white-space: pre-wrap;
  word-wrap: break-word;
}
.pcm-c-msg.bot {
  background: var(--white);
  color: var(--charcoal);
  border-left: 2px solid var(--sage);
  align-self: flex-start;
  border-radius: 4px 12px 12px 12px;
  box-shadow: 0 1px 2px rgba(10, 59, 122, 0.05);
}
.pcm-c-msg.user {
  background: var(--forest);
  color: var(--cream);
  align-self: flex-end;
  border-radius: 12px 12px 4px 12px;
}
.pcm-c-msg.system {
  background: var(--sage-soft);
  color: var(--forest);
  align-self: center;
  font-size: 0.84rem;
  font-style: italic;
  text-align: center;
  max-width: 100%;
  border-radius: 4px;
  padding: 8px 12px;
}
.pcm-c-typing {
  align-self: flex-start;
  padding: 10px 14px;
  background: var(--white);
  border-left: 2px solid var(--sage);
  border-radius: 4px 12px 12px 12px;
  display: inline-flex;
  gap: 4px;
}
.pcm-c-typing span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--sage-deep);
  opacity: 0.4;
  animation: pcm-c-dot 1.2s infinite ease-in-out;
}
.pcm-c-typing span:nth-child(2) { animation-delay: 0.15s; }
.pcm-c-typing span:nth-child(3) { animation-delay: 0.3s; }
@keyframes pcm-c-dot { 0%,80%,100% { opacity: 0.3; } 40% { opacity: 1; } }

.pcm-c-quickactions { display: flex; flex-wrap: wrap; gap: 6px; padding: 10px 18px 4px; background: var(--cream); }
.pcm-c-quickactions button {
  background: var(--white);
  border: 1px solid var(--gold-border);
  color: var(--forest);
  padding: 7px 12px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.pcm-c-quickactions button:hover { background: var(--gold-soft); border-color: var(--gold-deep); }

.pcm-c-form {
  border-top: 1px solid var(--line);
  padding: 14px 16px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pcm-c-form input, .pcm-c-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1.5px solid var(--line);
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  background: var(--cream);
  color: var(--charcoal);
  resize: none;
}
.pcm-c-form input:focus, .pcm-c-form textarea:focus { outline: none; border-color: var(--gold-deep); box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15); }
.pcm-c-form button {
  padding: 10px 16px;
  border-radius: 6px;
  background: var(--gold);
  color: var(--forest-deep);
  border: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.15s;
}
.pcm-c-form button:hover:not(:disabled) { background: var(--gold-deep); color: var(--white); }
.pcm-c-form button:disabled { opacity: 0.55; cursor: not-allowed; }
.pcm-c-form .pcm-c-row { display: flex; gap: 8px; }
.pcm-c-form .pcm-c-row textarea { flex: 1 1 auto; }
.pcm-c-form .pcm-c-row button { flex: 0 0 auto; }
.pcm-c-form .pcm-c-disclaimer { font-size: 0.74rem; color: var(--sage-deep); line-height: 1.4; }
.pcm-c-form .pcm-c-error { font-size: 0.82rem; color: #b91c1c; }

@media (max-width: 480px) {
  .pcm-c-panel { right: 12px; left: 12px; bottom: 84px; width: auto; max-width: none; }
  .pcm-c-fab { right: 14px; bottom: 14px; }
}

/* Print + reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ============================================================================
   OVERNIGHT POWER-UP COMPONENTS (2026-05-12)
   ROI calculator · Cerbo round-trip · Aria call player · Founder badge ·
   Onboarding timeline · Program timeline · Member dashboard mock · 404
   ========================================================================== */

/* ── Founder Slot badge (concierge hero) ────────────────────────────────── */
.pcm-founder-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(90deg, rgba(201,169,97,0.18), rgba(201,169,97,0.06));
  border: 1px solid var(--gold);
  color: var(--forest-deep);
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.pcm-founder-badge::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold-deep);
  box-shadow: 0 0 0 0 rgba(201,169,97,0.7);
  animation: pcm-pulse 2s infinite;
}
@keyframes pcm-pulse {
  0% { box-shadow: 0 0 0 0 rgba(201,169,97,0.55); }
  70% { box-shadow: 0 0 0 10px rgba(201,169,97,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,169,97,0); }
}
.pcm-founder-footer {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.86rem;
  color: var(--sage);
  text-align: center;
  margin-top: 14px;
}

/* ── ROI calculator ─────────────────────────────────────────────────────── */
.pcm-roi {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  padding: 36px 32px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.pcm-roi::before {
  /* Sage botanical corner ornament */
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle at 30% 70%, rgba(169,190,214,0.35), transparent 60%);
  opacity: 0.6;
  pointer-events: none;
}
.pcm-roi-head { text-align: center; margin-bottom: 28px; position: relative; z-index: 1; }
.pcm-roi-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.2vw, 2.05rem);
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 8px;
}
.pcm-roi-head p {
  font-size: 0.96rem;
  color: var(--charcoal-soft);
  margin: 0 auto;
  max-width: 560px;
}
.pcm-roi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  position: relative;
  z-index: 1;
}
.pcm-roi-inputs { display: flex; flex-direction: column; gap: 18px; }
.pcm-roi-field { display: flex; flex-direction: column; gap: 6px; }
.pcm-roi-field label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sage-deep);
}
.pcm-roi-field .pcm-roi-input-wrap { position: relative; }
.pcm-roi-field input[type="number"], .pcm-roi-field input[type="range"] {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--forest);
}
.pcm-roi-field input[type="number"] {
  width: 100%;
  padding: 12px 44px 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.pcm-roi-field input[type="number"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,97,0.22);
}
.pcm-roi-field .pcm-roi-suffix {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.92rem;
  color: var(--charcoal-mute);
  pointer-events: none;
}
.pcm-roi-field input[type="range"] { width: 100%; accent-color: var(--gold-deep); }
.pcm-roi-field .pcm-roi-help { font-size: 0.78rem; color: var(--charcoal-mute); font-style: italic; }
.pcm-roi-outputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  align-content: start;
}
.pcm-roi-card {
  background: var(--forest);
  color: var(--cream);
  border-radius: 10px;
  padding: 18px 18px 16px;
  position: relative;
  overflow: hidden;
  min-height: 116px;
}
.pcm-roi-card::after {
  content: "";
  position: absolute;
  bottom: -28px; left: -28px;
  width: 100px; height: 100px;
  background: radial-gradient(circle, rgba(169,190,214,0.40), transparent 70%);
  opacity: 0.55;
}
.pcm-roi-card.is-hero { grid-column: span 2; background: linear-gradient(135deg, var(--forest), var(--forest-soft)); }
.pcm-roi-card .pcm-roi-card-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pcm-roi-card .pcm-roi-card-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3.4vw, 2.2rem);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--cream);
}
.pcm-roi-card.is-hero .pcm-roi-card-value { font-size: clamp(2rem, 4.8vw, 2.8rem); }
.pcm-roi-card .pcm-roi-card-sub {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: rgba(248,244,237,0.72);
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
}
.pcm-roi-foot {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px dashed var(--line);
  font-size: 0.84rem;
  color: var(--charcoal-soft);
  text-align: center;
  position: relative; z-index: 1;
}
@media (max-width: 760px) {
  .pcm-roi { padding: 26px 20px; }
  .pcm-roi-grid { grid-template-columns: 1fr; gap: 24px; }
  .pcm-roi-outputs { grid-template-columns: 1fr; }
  .pcm-roi-card.is-hero { grid-column: span 1; }
}

/* ── Aria call player ───────────────────────────────────────────────────── */
.pcm-aria-call {
  background: var(--forest);
  color: var(--cream);
  border-radius: 14px;
  padding: 28px 26px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
.pcm-aria-call::before {
  content: "";
  position: absolute;
  top: -30px; right: -30px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 65%);
  opacity: 0.55; pointer-events: none;
}
.pcm-aria-call-head { display: flex; align-items: center; gap: 18px; margin-bottom: 22px; position: relative; z-index: 1; }
.pcm-aria-call-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--gold);
  border: 0;
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(201,169,97,0.32);
  transition: transform 0.15s, background 0.15s;
}
.pcm-aria-call-btn:hover { transform: scale(1.04); background: #D6B775; }
.pcm-aria-call-btn:focus-visible { outline: 3px solid rgba(248,244,237,0.6); outline-offset: 2px; }
.pcm-aria-call-btn svg { width: 24px; height: 24px; }
.pcm-aria-call-meta { flex: 1; min-width: 0; }
.pcm-aria-call-meta .pcm-aria-call-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 2px;
}
.pcm-aria-call-meta .pcm-aria-call-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

/* CSS-only animated waveform */
.pcm-aria-wave { display: flex; align-items: center; gap: 3px; height: 36px; }
.pcm-aria-wave span {
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
  height: 8px;
  opacity: 0.55;
}
.pcm-aria-call.is-playing .pcm-aria-wave span {
  animation: pcm-aria-wave 1.1s ease-in-out infinite;
}
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(2)  { animation-delay: 0.08s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(3)  { animation-delay: 0.16s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(4)  { animation-delay: 0.24s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(5)  { animation-delay: 0.32s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(6)  { animation-delay: 0.40s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(7)  { animation-delay: 0.48s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(8)  { animation-delay: 0.56s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(9)  { animation-delay: 0.64s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(10) { animation-delay: 0.72s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(11) { animation-delay: 0.80s; }
.pcm-aria-call.is-playing .pcm-aria-wave span:nth-child(12) { animation-delay: 0.88s; }
@keyframes pcm-aria-wave {
  0%, 100% { height: 6px; opacity: 0.45; }
  50% { height: 30px; opacity: 1; }
}
.pcm-aria-call-progress {
  height: 4px;
  background: rgba(248,244,237,0.18);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.pcm-aria-call-progress-fill {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.2s linear;
}
.pcm-aria-call-time {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  color: rgba(248,244,237,0.65);
  margin-bottom: 18px;
  display: flex;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.pcm-aria-transcript {
  background: rgba(248,244,237,0.06);
  border-left: 2px solid var(--gold);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  max-height: 340px;
  overflow-y: auto;
  margin-bottom: 18px;
  position: relative; z-index: 1;
}
.pcm-aria-transcript-line {
  padding: 8px 0;
  font-size: 0.96rem;
  line-height: 1.55;
  opacity: 0.45;
  transition: opacity 0.25s;
}
.pcm-aria-transcript-line.is-active { opacity: 1; }
.pcm-aria-transcript-line.aria {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  font-size: 1.05rem;
}
.pcm-aria-transcript-line.aria::before { content: "Aria  ·  "; font-family: 'Inter', sans-serif; font-style: normal; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }
.pcm-aria-transcript-line.patient { font-family: 'Inter', sans-serif; color: rgba(248,244,237,0.85); }
.pcm-aria-transcript-line.patient::before { content: "Caller  ·  "; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage); }
.pcm-aria-annot {
  background: var(--cream);
  color: var(--forest);
  border-radius: 10px;
  padding: 18px 22px;
  position: relative; z-index: 1;
}
.pcm-aria-annot h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.pcm-aria-annot ul { list-style: none; margin: 0; padding: 0; }
.pcm-aria-annot li {
  position: relative;
  padding: 6px 0 6px 22px;
  font-size: 0.92rem;
  color: var(--charcoal);
  line-height: 1.5;
}
.pcm-aria-annot li::before {
  content: "✦";
  position: absolute; left: 0;
  color: var(--gold-deep);
  font-size: 0.92rem;
}
.pcm-aria-call-caption {
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(248,244,237,0.72);
  margin-top: 16px;
  position: relative; z-index: 1;
}
@media (max-width: 600px) {
  .pcm-aria-call { padding: 22px 18px; }
  .pcm-aria-call-head { flex-wrap: wrap; }
  .pcm-aria-wave { width: 100%; order: 3; }
}

/* ── Cerbo round-trip 6-frame animation ─────────────────────────────────── */
.pcm-cerbo {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 32px 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.pcm-cerbo-head { text-align: center; margin-bottom: 26px; position: relative; }
.pcm-cerbo-playthrough {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--forest-deep);
  border: 0;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  margin-top: 14px;
  box-shadow: 0 4px 14px rgba(201,169,97,0.28);
  transition: background 0.15s, transform 0.15s;
}
.pcm-cerbo-playthrough:hover { background: #D6B775; transform: translateY(-1px); }
.pcm-cerbo-playthrough:focus-visible { outline: 3px solid var(--forest); outline-offset: 2px; }
.pcm-cerbo.is-playing-through .pcm-cerbo-playthrough { background: var(--sage); color: var(--forest-deep); }
.pcm-cerbo-frame { transition: transform 0.35s ease-out, opacity 0.35s ease-out, box-shadow 0.35s ease-out; }
.pcm-cerbo-frame.is-dim { opacity: 0.3; }
.pcm-cerbo-frame.is-active {
  opacity: 1;
  transform: scale(1.05);
  box-shadow: 0 0 0 3px rgba(169,190,214,0.55), 0 12px 32px rgba(10,59,122,0.18);
  z-index: 2;
  position: relative;
}
@media (prefers-reduced-motion: reduce) {
  .pcm-cerbo-frame { transition: none !important; }
  .pcm-cerbo-frame.is-active { transform: none; }
}
.pcm-cerbo-head h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  color: var(--forest);
  margin-bottom: 8px;
}
.pcm-cerbo-head p { color: var(--charcoal-soft); font-size: 0.96rem; max-width: 540px; margin: 0 auto; }
.pcm-cerbo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.pcm-cerbo-frame {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 12px;
  position: relative;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
/* Corner ornaments */
.pcm-cerbo-frame::before,
.pcm-cerbo-frame::after {
  content: "";
  position: absolute;
  width: 18px; height: 18px;
  border: 1px solid var(--sage);
  opacity: 0.45;
}
.pcm-cerbo-frame::before { top: 6px; left: 6px; border-right: 0; border-bottom: 0; }
.pcm-cerbo-frame::after { bottom: 6px; right: 6px; border-left: 0; border-top: 0; }
.pcm-cerbo-frame-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--gold-deep);
  margin-bottom: 6px;
}
.pcm-cerbo-svg { width: 100%; max-width: 130px; height: 110px; flex-shrink: 0; margin: 6px 0; }
.pcm-cerbo-cap {
  font-family: 'Inter', sans-serif;
  font-size: 0.74rem;
  text-align: center;
  color: var(--charcoal);
  line-height: 1.35;
  font-weight: 500;
}
.pcm-cerbo-cap em {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold-deep);
  font-size: 0.92em;
}
@media (max-width: 980px) {
  .pcm-cerbo-strip { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .pcm-cerbo-strip { grid-template-columns: 1fr; gap: 10px; }
  .pcm-cerbo-frame { min-height: 180px; }
  .pcm-cerbo-svg { max-width: 160px; height: 130px; }
}

/* Cerbo animations (motion) */
@keyframes pcm-cerbo-ring {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.18); opacity: 1; }
}
@keyframes pcm-cerbo-ribbon {
  0% { transform: translateX(-40px); opacity: 0; }
  35%, 100% { transform: translateX(0); opacity: 1; }
}
@keyframes pcm-cerbo-tick {
  0% { stroke-dashoffset: 60; }
  50%, 100% { stroke-dashoffset: 0; }
}
@keyframes pcm-cerbo-cursor {
  0% { transform: translateX(-30px); opacity: 0; }
  25% { opacity: 1; }
  90%, 100% { transform: translateX(30px); opacity: 0; }
}
@keyframes pcm-cerbo-pulse {
  0%, 100% { fill-opacity: 0.4; }
  50% { fill-opacity: 1; }
}
@keyframes pcm-cerbo-sms {
  0% { transform: translateX(-30px); opacity: 0; }
  25% { transform: translateX(0); opacity: 1; }
  90%, 100% { transform: translateX(30px); opacity: 0; }
}
.pcm-cerbo .a-ring { transform-origin: center; animation: pcm-cerbo-ring 2.5s infinite ease-in-out; }
.pcm-cerbo .a-ribbon { animation: pcm-cerbo-ribbon 2.5s infinite ease-out; }
.pcm-cerbo .a-cursor { animation: pcm-cerbo-cursor 3s infinite ease-in-out; }
.pcm-cerbo .a-tick { stroke-dasharray: 60; stroke-dashoffset: 60; animation: pcm-cerbo-tick 2s infinite; }
.pcm-cerbo .a-pulse { animation: pcm-cerbo-pulse 1.8s infinite ease-in-out; }
.pcm-cerbo .a-sms { animation: pcm-cerbo-sms 2.5s infinite ease-in-out; }
@media (prefers-reduced-motion: reduce) {
  .pcm-cerbo [class*="a-"] { animation: none !important; }
  .pcm-cerbo .a-cursor, .pcm-cerbo .a-sms { transform: translateX(0); opacity: 1; }
  .pcm-cerbo .a-tick { stroke-dashoffset: 0; }
}

/* ── 21-day onboarding timeline (4-column) ─────────────────────────────── */
.pcm-onboarding {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}
.pcm-onboarding-col {
  padding: 0 16px 8px;
  position: relative;
}
.pcm-onboarding-col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22px;
  right: -8px;
  height: 2px;
  width: calc(100% - 60px);
  background: var(--gold);
  opacity: 0.6;
}
.pcm-onboarding-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 14px;
  border: 2px solid var(--gold);
  position: relative;
  z-index: 1;
}
.pcm-onboarding-window {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.pcm-onboarding-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--forest);
  margin-bottom: 8px;
  font-weight: 500;
}
.pcm-onboarding-col ul { list-style: none; padding: 0; margin: 0; }
.pcm-onboarding-col li {
  position: relative;
  padding: 4px 0 4px 18px;
  font-size: 0.88rem;
  color: var(--charcoal);
  line-height: 1.45;
}
.pcm-onboarding-col li::before {
  content: "—";
  position: absolute; left: 0;
  color: var(--gold-deep);
}
@media (max-width: 880px) {
  .pcm-onboarding { grid-template-columns: 1fr 1fr; }
  .pcm-onboarding-col:nth-child(2)::after { display: none; }
}
@media (max-width: 540px) {
  .pcm-onboarding { grid-template-columns: 1fr; }
  .pcm-onboarding-col::after { display: none; }
  .pcm-onboarding-col { padding-bottom: 22px; }
}

/* ── GLP-1 / HRT program timeline (vertical) ───────────────────────────── */
.pcm-program-timeline {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 38px;
}
.pcm-program-timeline::before {
  content: "";
  position: absolute;
  left: 19px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: var(--sage);
}
.pcm-program-node { position: relative; padding-bottom: 26px; }
.pcm-program-node::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 2px var(--gold);
}
.pcm-program-node .pcm-program-when {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 4px;
}
.pcm-program-node .pcm-program-title {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.pcm-program-node .pcm-program-note {
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--charcoal-soft);
  line-height: 1.5;
}
.pcm-program-caption {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
  color: var(--sage-deep);
  text-align: center;
  margin-bottom: 22px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Member dashboard mockup ────────────────────────────────────────────── */
.pcm-member-dash {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  max-width: 1080px;
  margin: 0 auto;
}
.pcm-member-topnav {
  background: var(--forest);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 22px;
  gap: 14px;
}
.pcm-member-topnav-brand { display: flex; align-items: center; gap: 10px; font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; }
.pcm-member-topnav-brand svg { width: 22px; height: 22px; color: var(--gold); }
.pcm-member-topnav-right { display: flex; align-items: center; gap: 16px; }
.pcm-member-topnav-right .pcm-member-bell { position: relative; cursor: pointer; }
.pcm-member-topnav-right .pcm-member-bell::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  border: 2px solid var(--forest);
}
.pcm-member-topnav-right .pcm-member-name { font-family: 'Inter', sans-serif; font-size: 0.88rem; }
.pcm-member-topnav-right .pcm-member-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.96rem;
}
.pcm-member-greeting {
  background: var(--cream);
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.pcm-member-greeting h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--forest);
  margin-bottom: 4px;
}
.pcm-member-greeting p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  margin: 0;
}
.pcm-member-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 22px 26px;
}
.pcm-member-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 18px 18px;
}
.pcm-member-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--forest);
  margin-bottom: 10px;
}
.pcm-member-card .pcm-member-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.84rem;
  color: var(--charcoal);
  border-bottom: 1px dashed rgba(169,190,214,0.4);
}
.pcm-member-card .pcm-member-row:last-child { border-bottom: 0; }
.pcm-member-card .pcm-member-row span:last-child { color: var(--charcoal-soft); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 0.92rem; }
.pcm-member-msg {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 10px 12px;
  border-radius: 0 6px 6px 0;
  margin-bottom: 8px;
  font-size: 0.84rem;
  color: var(--charcoal);
}
.pcm-member-msg.from-you {
  background: var(--gold-soft);
  border-left-color: var(--gold-deep);
  margin-left: 28px;
}
.pcm-member-msg .who { display: block; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 0.78rem; color: var(--gold-deep); margin-bottom: 2px; }
.pcm-member-aria {
  background: var(--forest);
  color: var(--cream);
  padding: 16px 18px;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.pcm-member-aria-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--forest-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 1rem;
  flex-shrink: 0;
}
.pcm-member-aria-body { font-size: 0.86rem; line-height: 1.5; }
.pcm-member-aria-body strong { color: var(--gold); font-weight: 600; }
.pcm-member-cal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.pcm-member-cal .pcm-member-cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  color: var(--charcoal-soft);
  background: var(--white);
  border-radius: 4px;
}
.pcm-member-cal .pcm-member-cal-day.is-booked {
  background: var(--gold);
  color: var(--forest-deep);
  font-weight: 600;
}
.pcm-member-cal .pcm-member-cal-day.is-today {
  outline: 2px solid var(--forest);
  outline-offset: -2px;
}
@media (max-width: 720px) {
  .pcm-member-cards { grid-template-columns: 1fr; }
}

/* ── Charter founder strip ──────────────────────────────────────────────── */
.pcm-charter-strip {
  background: linear-gradient(90deg, #0A3B7A 0%, #10529F 100%);
  color: #F8F4ED;
  padding: 16px 22px;
  font-family: 'Inter', sans-serif;
  font-size: 0.94rem;
  text-align: center;
  border-bottom: 3px solid #C9A961;
}
.pcm-charter-strip strong { color: #C9A961; letter-spacing: 0.04em; }
.pcm-charter-strip em { color: #C9A961; font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.05em; }
.pcm-charter-first-year {
  display: inline-block;
  margin-top: 8px;
  background: rgba(201,169,97,0.12);
  border: 1px solid #C9A961;
  color: #C9A961;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.02rem;
}

/* ── 404 page ───────────────────────────────────────────────────────────── */
.pcm-404 {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}
.pcm-404 .pcm-404-ornament {
  width: 80px; height: 80px;
  color: var(--sage);
  margin-bottom: 22px;
  opacity: 0.6;
}
.pcm-404 h1 { font-size: clamp(2.4rem, 6vw, 3.6rem); margin-bottom: 12px; }
.pcm-404 p { font-size: 1.05rem; color: var(--charcoal-soft); margin-bottom: 26px; max-width: 540px; }

/* ── Insights article shell ─────────────────────────────────────────────── */
.pcm-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 24px 64px;
}
.pcm-article-head { margin-bottom: 36px; text-align: left; }
.pcm-article-meta {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage-deep);
  margin-bottom: 14px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.pcm-article-meta .pcm-article-tag {
  background: var(--cream-deep);
  color: var(--gold-deep);
  padding: 3px 10px;
  border-radius: 999px;
}
.pcm-article-head h1 {
  font-size: clamp(2.2rem, 4.8vw, 3.2rem);
  margin-bottom: 18px;
}
.pcm-article-byline {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--charcoal-soft);
  font-size: 1.02rem;
  margin-bottom: 28px;
}
.pcm-article-ornament {
  display: block;
  width: 60px; height: 16px;
  margin: 0 0 36px;
  color: var(--sage);
}
.pcm-article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  margin: 36px 0 14px;
  color: var(--forest);
}
.pcm-article-body p { margin-bottom: 14px; line-height: 1.7; color: var(--charcoal); font-size: 1.02rem; }
.pcm-article-pullquote {
  border-left: 3px solid var(--gold);
  padding: 18px 22px;
  margin: 28px 0;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--forest);
  background: var(--cream-deep);
  border-radius: 0 8px 8px 0;
  line-height: 1.4;
}
.pcm-article-cta {
  background: var(--forest);
  color: var(--cream);
  padding: 28px 26px;
  border-radius: 12px;
  margin-top: 48px;
  text-align: center;
}
.pcm-article-cta h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: var(--cream);
  margin-bottom: 12px;
}
.pcm-article-cta a {
  display: inline-block;
  background: var(--gold);
  color: var(--forest-deep);
  padding: 12px 22px;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.96rem;
  margin-top: 10px;
}
.pcm-article-cta a:hover { background: #D6B775; color: var(--forest-deep); }

.pcm-insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pcm-insight-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pcm-insight-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); text-decoration: none; }
.pcm-insight-card .pcm-insight-tag {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 12px;
}
.pcm-insight-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: var(--forest);
  margin-bottom: 10px;
  line-height: 1.25;
}
.pcm-insight-card p {
  font-size: 0.92rem;
  color: var(--charcoal-soft);
  line-height: 1.55;
  margin-bottom: 12px;
  flex: 1;
}
.pcm-insight-card .pcm-insight-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.84rem;
  color: var(--sage-deep);
}
@media (max-width: 880px) { .pcm-insights-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .pcm-insights-grid { grid-template-columns: 1fr; } }
