/* ═══ Renewed Perspectives — main site styles ═══ */

:root {
      --bg:        #F8F5EE;
      --bg-alt:    #ECE6D8;
      --bg-dark:   #1F2620;
      --white:     #FCFAF4;
      --text:      #232A24;
      --text-mid:  #4F5A4F;
      --text-light:#8A9285;
      --amber:     #B26A4A;
      --amber-lt:  #D48E6E;
      --mauve:     #556B5A;
      --mauve-lt:  #7F9B84;
      --sage:      #8FA892;
      --radius:    3px;
    }

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Lato', sans-serif;
      font-weight: 300;
      background: var(--bg);
      color: var(--text);
      line-height: 1.75;
      -webkit-font-smoothing: antialiased;
    }
    h1,h2,h3,h4,h5 {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 400;
      line-height: 1.18;
    }
    img { display: block; max-width: 100%; }
    a { color: inherit; }

    /* ─── NAV ─── */
    .nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      height: 72px;
      background: rgba(255,252,248,0.95);
      backdrop-filter: blur(8px);
      border-bottom: 1px solid rgba(42,31,26,0.07);
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 56px;
      transition: box-shadow 0.3s;
    }
    .nav.scrolled { box-shadow: 0 2px 24px rgba(42,31,26,0.08); }
    .nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
    .nav-brand img { height: 46px; width: auto; }
    .nav-brand-copy { line-height: 1.2; }
    .nav-brand-name { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--text); }
    .nav-brand-creds { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-light); font-weight: 400; }
    .nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
    .nav-links a { font-size: 0.75rem; letter-spacing: 0.09em; text-transform: uppercase; text-decoration: none; color: var(--text-mid); transition: color 0.2s; font-weight: 400; }
    .nav-links a:hover { color: var(--amber); }
    .nav-btn {
      background: var(--amber); color: var(--white) !important;
      padding: 10px 22px; border-radius: var(--radius);
      font-size: 0.72rem !important; letter-spacing: 0.1em;
      transition: background 0.2s !important;
    }
    .nav-btn:hover { background: #A0622A !important; color: var(--white) !important; }
    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 4px; }
    .nav-hamburger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: all 0.3s; }
    .mobile-nav { display: none; }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 55% 45%;
      padding-top: 72px;
    }
    .hero-left {
      display: flex; flex-direction: column; justify-content: center;
      padding: 80px 60px 80px 80px;
    }
    .eyebrow {
      font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase;
      color: var(--amber); font-weight: 700; margin-bottom: 22px;
    }
    .hero-h1 {
      font-size: clamp(2.8rem, 4.2vw, 5rem);
      color: var(--text);
      margin-bottom: 28px;
      font-weight: 300;
      letter-spacing: -0.01em;
    }
    .hero-h1 em { font-style: italic; color: var(--mauve); }
    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 500px;
      line-height: 1.85;
      margin-bottom: 48px;
    }
    .hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
    .btn-primary {
      display: inline-block; background: var(--amber); color: var(--white);
      padding: 15px 34px; text-decoration: none; border-radius: var(--radius);
      font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; transition: background 0.2s;
    }
    .btn-primary:hover { background: #A0622A; }
    .btn-outline {
      display: inline-block; border: 1.5px solid rgba(42,31,26,0.3); color: var(--text);
      padding: 15px 34px; text-decoration: none; border-radius: var(--radius);
      font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; transition: all 0.2s;
    }
    .btn-outline:hover { border-color: var(--amber); color: var(--amber); }
    .hero-trust { display: flex; gap: 36px; margin-top: 56px; flex-wrap: wrap; }
    .trust-item { }
    .trust-label { font-size: 0.62rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
    .trust-value { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 500; color: var(--text); }
    .hero-right {
      background: var(--bg-alt);
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      padding: 60px 48px;
      position: relative;
    }
    .hero-logo-wrap { max-width: 400px; width: 100%; }
    .hero-tagline-card {
      background: var(--white);
      border-left: 3px solid var(--amber);
      padding: 20px 24px;
      margin-top: 28px;
      max-width: 400px; width: 100%;
    }
    .hero-tagline-card p {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.05rem; font-style: italic;
      color: var(--text-mid); line-height: 1.55;
    }

    /* ─── SECTIONS ─── */
    .section { padding: 100px 80px; }
    .section-sm { padding: 70px 80px; }
    .section-title { font-size: clamp(2rem, 2.8vw, 3.2rem); margin-bottom: 20px; }
    .section-lead { font-size: 1rem; color: var(--text-mid); max-width: 580px; line-height: 1.85; margin-bottom: 56px; }

    /* ─── BAND (dark CTA strip) ─── */
    .band {
      background: var(--bg-dark);
      padding: 72px 80px;
      display: flex; align-items: center; justify-content: space-between; gap: 40px;
      flex-wrap: wrap;
    }
    .band-copy h2 { font-size: clamp(1.6rem, 2.2vw, 2.4rem); color: var(--white); margin-bottom: 10px; }
    .band-copy p { color: rgba(255,252,248,0.6); max-width: 560px; font-size: 0.95rem; line-height: 1.8; }
    .btn-amber-outline {
      display: inline-block; border: 1.5px solid var(--amber-lt); color: var(--amber-lt);
      padding: 15px 36px; text-decoration: none; border-radius: var(--radius);
      font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; transition: all 0.2s; white-space: nowrap; flex-shrink: 0;
    }
    .btn-amber-outline:hover { background: var(--amber-lt); color: var(--bg-dark); }

    /* ─── ABOUT ─── */
    #about { background: var(--white); }
    .about-grid { display: grid; grid-template-columns: 340px 1fr; gap: 72px; align-items: start; }
    .about-photo {
      position: sticky; top: 96px;
      aspect-ratio: 3/4;
      overflow: hidden;
      border-radius: var(--radius);
    }
    .stripe-ph {
      width: 100%; height: 100%;
      background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 9px, #E4DDD4 9px, #E4DDD4 18px);
      display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
    }
    .stripe-ph span { font-family: monospace; font-size: 0.68rem; background: rgba(255,252,248,0.88); padding: 5px 12px; color: var(--text-mid); letter-spacing: 0.04em; border-radius: 2px; }
    .about-name { font-size: 2.6rem; margin-bottom: 6px; }
    .about-creds { font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 36px; }
    .about-bio p { color: var(--text-mid); line-height: 1.9; margin-bottom: 18px; font-size: 0.98rem; }
    .about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 36px; }
    .tag {
      font-size: 0.72rem; letter-spacing: 0.08em; padding: 7px 16px;
      border: 1px solid rgba(42,31,26,0.15); border-radius: 99px;
      color: var(--text-mid);
    }
    .tag.accent { background: rgba(192,120,48,0.1); border-color: rgba(192,120,48,0.3); color: var(--amber); }

    /* ─── EMDR ─── */
    #emdr { background: var(--bg-dark); padding: 100px 80px; }
    .emdr-eyebrow { font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber-lt); font-weight: 700; margin-bottom: 22px; }
    .emdr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .emdr-h2 { font-size: clamp(2rem, 2.8vw, 3.2rem); color: var(--white); margin-bottom: 24px; }
    .emdr-body p { color: rgba(255,252,248,0.68); line-height: 1.9; margin-bottom: 18px; font-size: 0.98rem; }
    .emdr-quote {
      border-left: 3px solid var(--amber);
      padding: 16px 24px;
      margin-top: 36px;
    }
    .emdr-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-style: italic; color: rgba(255,252,248,0.88); line-height: 1.6; margin: 0; }
    .emdr-steps { list-style: none; }
    .emdr-step {
      display: flex; gap: 22px; align-items: flex-start;
      padding: 24px 0;
      border-bottom: 1px solid rgba(255,252,248,0.07);
    }
    .emdr-step:last-child { border-bottom: none; }
    .step-num { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--amber-lt); opacity: 0.5; line-height: 1; flex-shrink: 0; min-width: 36px; }
    .step-body h4 { color: rgba(255,252,248,0.9); font-family: 'Lato', sans-serif; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.04em; margin-bottom: 5px; }
    .step-body p { color: rgba(255,252,248,0.52); font-size: 0.875rem; margin: 0; line-height: 1.65; }

    /* ─── SERVICES (word cloud) ─── */
    #services { background: var(--bg); }
    .services-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 56px; }
    .svc-cloud {
      display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
      gap: 12px 28px; padding: 40px 20px 20px;
      max-width: 1040px; margin: 0 auto;
      font-family: 'Cormorant Garamond', serif;
      line-height: 1.1;
    }
    .svc-word {
      font-style: italic;
      color: var(--text-mid);
      white-space: nowrap;
      transition: color 0.3s, transform 0.3s;
      cursor: default;
      letter-spacing: -0.005em;
    }
    .svc-word:hover { color: var(--amber); transform: translateY(-2px); }
    .svc-word.xl { font-size: clamp(2.4rem, 4.2vw, 4rem); color: var(--text); font-weight: 500; }
    .svc-word.l  { font-size: clamp(1.9rem, 3vw, 2.8rem); color: var(--text); font-weight: 400; }
    .svc-word.m  { font-size: clamp(1.4rem, 2.2vw, 2rem); font-weight: 400; }
    .svc-word.s  { font-size: clamp(1.1rem, 1.6vw, 1.4rem); font-weight: 300; color: var(--text-light); }
    .svc-word.accent { color: var(--amber); }
    .svc-word.mauve  { color: var(--mauve); }
    .svc-word.script { font-family: 'Kaushan Script', cursive; font-style: normal; letter-spacing: 0; }
    .svc-word.rot-l { transform: rotate(-2deg); }
    .svc-word.rot-r { transform: rotate(2deg); }
    .svc-word.rot-l:hover { transform: rotate(-2deg) translateY(-2px); }
    .svc-word.rot-r:hover { transform: rotate(2deg) translateY(-2px); }
    .svc-dot { display: inline-block; width: 5px; height: 5px; border-radius: 50%; background: var(--amber); opacity: 0.4; margin: 0 4px; align-self: center; }
    .svc-hero-row {
      width: 100%;
      display: flex; flex-wrap: wrap; justify-content: center; align-items: baseline;
      gap: 40px 80px;
      margin-bottom: 36px;
      padding-bottom: 32px;
      border-bottom: 1px solid rgba(42,31,26,0.08);
    }
    @media (max-width: 600px) {
      .svc-hero-row { gap: 20px 36px; }
    }

    /* ─── INSURANCE ─── */
    #insurance { background: var(--bg-alt); }
    .insurance-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
    .insurance-list { list-style: none; }
    .insurance-list li {
      padding: 13px 0;
      border-bottom: 1px solid rgba(42,31,26,0.08);
      font-size: 0.93rem; color: var(--text-mid);
      display: flex; align-items: center; gap: 12px;
    }
    .insurance-list li::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); flex-shrink: 0; }
    .fees-panel { background: var(--white); padding: 44px; border-radius: var(--radius); }
    .fees-panel h3 { font-size: 1.5rem; margin-bottom: 28px; }
    .fee-row { display: flex; justify-content: space-between; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(42,31,26,0.06); }
    .fee-label { color: var(--text-mid); font-size: 0.93rem; }
    .fee-amt { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 500; color: var(--amber); }
    .sliding-note { margin-top: 20px; padding: 14px 18px; background: rgba(122,88,136,0.07); border-left: 3px solid var(--mauve); font-size: 0.82rem; color: var(--text-mid); line-height: 1.6; }
    .payment-note { margin-top: 16px; font-size: 0.75rem; color: var(--text-light); line-height: 1.65; }

    /* ─── FAQ ─── */
    #faq { background: var(--white); }
    .faq-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .faq-list { }
    .faq-item { border-bottom: 1px solid rgba(42,31,26,0.09); }
    .faq-btn {
      width: 100%; text-align: left; background: none; border: none;
      cursor: pointer; padding: 24px 0;
      display: flex; justify-content: space-between; align-items: center; gap: 16px;
      font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--text);
      transition: color 0.2s;
    }
    .faq-btn:hover { color: var(--amber); }
    .faq-icon { font-size: 1.3rem; color: var(--amber); flex-shrink: 0; line-height: 1; transition: transform 0.3s; }
    .faq-btn.open .faq-icon { transform: rotate(45deg); }
    .faq-answer { display: none; padding-bottom: 22px; font-size: 0.92rem; color: var(--text-mid); line-height: 1.85; }
    .faq-answer.open { display: block; }
    .faq-sidebar { position: sticky; top: 96px; }
    .faq-sidebar-card { background: var(--bg-alt); padding: 40px; border-radius: var(--radius); }
    .faq-sidebar-card h3 { font-size: 1.5rem; margin-bottom: 14px; }
    .faq-sidebar-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 28px; }

    /* ─── RESOURCES ─── */
    #resources { background: var(--bg); }
    .resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .resource-card { background: var(--white); border-radius: var(--radius); overflow: hidden; }
    .resource-img {
      height: 176px;
      background: repeating-linear-gradient(45deg, var(--bg-alt), var(--bg-alt) 9px, #E4DDD4 9px, #E4DDD4 18px);
      display: flex; align-items: center; justify-content: center;
    }
    .resource-img span { font-family: monospace; font-size: 0.62rem; background: rgba(255,252,248,0.88); padding: 4px 10px; color: var(--text-mid); border-radius: 2px; }
    .resource-body { padding: 28px; }
    .resource-tag { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 10px; }
    .resource-title { font-size: 1.2rem; margin-bottom: 10px; line-height: 1.3; }
    .resource-excerpt { font-size: 0.875rem; color: var(--text-mid); line-height: 1.72; }
    .resource-link { display: inline-block; margin-top: 18px; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--amber); text-decoration: none; font-weight: 700; border-bottom: 1.5px solid var(--amber); padding-bottom: 2px; transition: opacity 0.2s; }
    .resource-link:hover { opacity: 0.7; }
    .resources-cta-wrap { text-align: center; margin-top: 48px; }

    /* ─── CONTACT ─── */
    #contact { background: var(--bg-alt); }
    .contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
    .contact-info-block { margin-bottom: 36px; display: flex; gap: 18px; align-items: flex-start; }
    .contact-icon { width: 42px; height: 42px; border-radius: 50%; background: var(--amber); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .contact-icon svg { width: 17px; height: 17px; fill: var(--white); }
    .contact-info-label { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-light); font-weight: 700; margin-bottom: 4px; }
    .contact-info-value { font-size: 1rem; color: var(--text); }
    .contact-info-value a { text-decoration: none; color: var(--text); transition: color 0.2s; }
    .contact-info-value a:hover { color: var(--amber); }
    .booking-note { background: var(--white); padding: 24px 28px; border-radius: var(--radius); margin-top: 32px; }
    .booking-note p { font-size: 0.875rem; color: var(--text-mid); line-height: 1.75; }
    .booking-note strong { color: var(--text); font-weight: 700; }
    .contact-form-panel { background: var(--white); padding: 48px; border-radius: var(--radius); }
    .contact-form-panel h3 { font-size: 1.7rem; margin-bottom: 8px; }
    .contact-form-panel .form-sub { font-size: 0.88rem; color: var(--text-mid); margin-bottom: 32px; line-height: 1.6; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 20px; }
    .form-label { display: block; font-size: 0.65rem; letter-spacing: 0.13em; text-transform: uppercase; color: var(--text-mid); font-weight: 700; margin-bottom: 8px; }
    .form-input, .form-select, .form-textarea {
      width: 100%;
      border: 1px solid rgba(42,31,26,0.14);
      background: var(--bg);
      padding: 13px 15px;
      font-size: 0.93rem;
      font-family: 'Lato', sans-serif;
      color: var(--text);
      border-radius: var(--radius);
      outline: none;
      transition: border-color 0.2s;
      appearance: none;
    }
    .form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--amber); }
    .form-textarea { min-height: 110px; resize: vertical; line-height: 1.6; }
    .form-submit {
      width: 100%; background: var(--amber); color: var(--white); border: none;
      padding: 15px; font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
      font-weight: 700; cursor: pointer; border-radius: var(--radius); transition: background 0.2s;
      font-family: 'Lato', sans-serif;
    }
    .form-submit:hover { background: #A0622A; }
    .form-privacy { font-size: 0.72rem; color: var(--text-light); text-align: center; margin-top: 14px; line-height: 1.6; }

    /* ─── FOOTER ─── */
    footer {
      background: var(--bg-dark);
      padding: 72px 80px 40px;
    }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; margin-bottom: 56px; }
    .footer-brand img { height: 72px; opacity: 0.95; margin-bottom: 18px; background: rgba(255,252,248,0.04); border-radius: 6px; padding: 6px; }
    .footer-brand p { font-size: 0.85rem; color: rgba(255,252,248,0.42); line-height: 1.75; max-width: 280px; }
    .footer-col h4 { font-family: 'Lato', sans-serif; font-size: 0.65rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,252,248,0.5); font-weight: 700; margin-bottom: 20px; }
    .footer-col ul { list-style: none; }
    .footer-col li { margin-bottom: 11px; }
    .footer-col a { font-size: 0.875rem; color: rgba(255,252,248,0.42); text-decoration: none; transition: color 0.2s; }
    .footer-col a:hover { color: var(--amber-lt); }
    .footer-bottom { border-top: 1px solid rgba(255,252,248,0.07); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: gap; gap: 16px; }
    .footer-bottom p { font-size: 0.75rem; color: rgba(255,252,248,0.28); }
    .footer-bottom a { color: rgba(255,252,248,0.28); text-decoration: none; }
    .footer-bottom a:hover { color: var(--amber-lt); }

    /* ─── SUCCESS STATE ─── */
    .form-success { display: none; text-align: center; padding: 40px 20px; }
    .form-success.show { display: block; }
    .form-success h3 { font-size: 1.8rem; margin-bottom: 12px; color: var(--text); }
    .form-success p { color: var(--text-mid); }

    /* ─── BLOG / ARTICLE PAGES ─── */
    .page-hero {
      padding: 144px 80px 64px;
      background: var(--bg-alt);
      border-bottom: 1px solid rgba(42,31,26,0.08);
    }
    .page-hero .eyebrow { margin-bottom: 16px; }
    .page-hero h1 {
      font-size: clamp(2.4rem, 4vw, 4rem);
      font-weight: 300;
      color: var(--text);
      max-width: 820px;
      margin-bottom: 20px;
      letter-spacing: -0.01em;
    }
    .page-hero .lede {
      font-size: 1.05rem;
      color: var(--text-mid);
      max-width: 640px;
      line-height: 1.8;
    }
    .back-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase;
      color: var(--text-mid); text-decoration: none; font-weight: 700;
      margin-bottom: 28px;
      transition: color 0.2s;
    }
    .back-link:hover { color: var(--amber); }
    .back-link::before { content: '←'; font-size: 1rem; font-weight: 400; }

    .article-meta {
      display: flex; gap: 24px; flex-wrap: wrap; margin-top: 28px;
      font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
      color: var(--text-light); font-weight: 700;
    }
    .article-meta .tag-pill {
      color: var(--amber); background: rgba(192,120,48,0.1);
      padding: 5px 14px; border-radius: 99px; letter-spacing: 0.12em;
    }

    /* Long-form article prose */
    .article-body {
      max-width: 720px;
      margin: 0 auto;
      padding: 80px 40px 100px;
    }
    .article-body p,
    .article-body ul,
    .article-body ol,
    .article-body blockquote {
      font-size: 1.08rem;
      line-height: 1.85;
      color: var(--text);
      margin-bottom: 1.4em;
    }
    .article-body h2 {
      font-size: 2rem;
      margin-top: 2.4em;
      margin-bottom: 0.6em;
      color: var(--text);
    }
    .article-body h3 {
      font-size: 1.4rem;
      margin-top: 2em;
      margin-bottom: 0.5em;
      color: var(--text);
    }
    .article-body ul, .article-body ol { padding-left: 1.5em; }
    .article-body li { margin-bottom: 0.5em; }
    .article-body blockquote {
      border-left: 3px solid var(--amber);
      padding: 8px 28px;
      margin-left: 0;
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.35rem;
      font-style: italic;
      color: var(--text-mid);
      line-height: 1.55;
    }
    .article-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
    .article-body strong { font-weight: 700; color: var(--text); }
    .article-body hr {
      border: none; border-top: 1px solid rgba(42,31,26,0.12);
      margin: 3em 0;
    }

    .author-card {
      background: var(--bg-alt);
      padding: 40px;
      border-radius: var(--radius);
      margin-top: 48px;
      display: grid;
      grid-template-columns: 88px 1fr;
      gap: 24px;
      align-items: center;
    }
    .author-card img { width: 88px; height: 88px; border-radius: 50%; object-fit: cover; }
    .author-card-name { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; margin-bottom: 4px; }
    .author-card-creds { font-size: 0.65rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber); font-weight: 700; margin-bottom: 10px; }
    .author-card p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; margin: 0; }

    .article-cta {
      background: var(--bg-dark);
      padding: 64px 40px;
      text-align: center;
      margin-top: 64px;
      border-radius: var(--radius);
    }
    .article-cta h3 { font-size: 1.8rem; color: var(--white); margin-bottom: 12px; }
    .article-cta p { color: rgba(255,252,248,0.68); max-width: 520px; margin: 0 auto 28px; font-size: 0.98rem; line-height: 1.75; }

    @media (max-width: 768px) {
      .page-hero { padding: 112px 24px 48px; }
      .article-body { padding: 48px 24px 64px; }
      .author-card { grid-template-columns: 1fr; text-align: center; padding: 28px; }
      .author-card img { margin: 0 auto; }
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .hero { grid-template-columns: 1fr; min-height: auto; }
      .hero-left { padding: 60px 48px; }
      .hero-right { padding: 60px 48px; min-height: 420px; }
      .about-grid { grid-template-columns: 1fr; }
      .about-photo { position: static; aspect-ratio: 4/3; max-height: 340px; }
      .emdr-grid { grid-template-columns: 1fr; }
      .services-intro { grid-template-columns: 1fr; }
      .insurance-layout { grid-template-columns: 1fr; }
      .faq-wrap { grid-template-columns: 1fr; }
      .faq-sidebar { position: static; }
      .resources-grid { grid-template-columns: 1fr 1fr; }
      .contact-layout { grid-template-columns: 1fr; }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .nav { padding: 0 24px; }
      .nav-links { display: none; }
      .nav-hamburger { display: flex; }
      .mobile-nav {
        position: fixed; top: 72px; left: 0; right: 0; z-index: 199;
        background: var(--white);
        border-bottom: 1px solid rgba(42,31,26,0.07);
        padding: 24px;
        flex-direction: column; gap: 0;
        box-shadow: 0 8px 32px rgba(42,31,26,0.12);
      }
      .mobile-nav.open { display: flex; }
      .mobile-nav a { display: block; padding: 14px 0; font-size: 0.88rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--text-mid); text-decoration: none; border-bottom: 1px solid rgba(42,31,26,0.06); }
      .mobile-nav .m-btn { display: block; margin-top: 16px; text-align: center; background: var(--amber); color: var(--white); padding: 14px; border-radius: var(--radius); font-weight: 700; font-size: 0.78rem; letter-spacing: 0.1em; border: none; }
      .section, .section-sm, #emdr { padding: 64px 24px; }
      .hero-left { padding: 48px 24px; }
      .hero-right { padding: 40px 24px; }
      .band { padding: 48px 24px; }
      footer { padding: 56px 24px 32px; }
      .footer-top { grid-template-columns: 1fr; gap: 36px; }
      .resources-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .contact-form-panel { padding: 28px; }
      .fees-panel { padding: 28px; }
    }
