// hf-poster.jsx — Hi-fi A-series portrait poster templates (414×586). Sets window.HB_POSTER. // On-brand: Poppins display / Open Sans body / Bebas Neue wordmark, cream surfaces, // navy headline + single orange highlight, tracked-out eyebrows, navy contact bands. No emoji. (function () { const W = 414, H = 586; const ORANGE = '#EC7A35', NAVY = '#21366C', CREAM = '#FFFBF6', CREAM2 = '#F7E9D7', BLUSH = '#FCE6E0', INK = '#1A1F2B', INK5 = '#6A7286'; const DISPLAY = "'Poppins','Helvetica Neue',sans-serif"; const BODY = "'Open Sans','Helvetica Neue',sans-serif"; const LOGO = "'Bebas Neue',Impact,sans-serif"; const Mark = ({ size = 20, white = false }) => ( ); const P = ({ children, bg = CREAM }) => (
{children}
); const Eyebrow = ({ children, navy = false, band = false }) => ( {children} ); const LogoRow = ({ white = false, label = '' }) => (
TATAVA STUDIO
{label && {label}}
); const ContactBand = ({ cta = 'Book a Session' }) => (
TATAVA STUDIO
tatavastudio.com · +91 85957 48981 · Simplifying Wellness
{cta}
); const PhotoFrame = ({ w, h, label, tilt = 2, navyBlock = false }) => (
{label}
); // ── A: Editorial "5 Signs" listicle ─────────────────────────────── const PosterA = () => (

Family Counselling

5 Signs You Should Seek Family Counselling in Urban Areas

Seeking support is not weakness — it's wisdom. Real signs your family could benefit from professional care.

{[ 'Recurring arguments without resolution', 'Emotional distance between members', 'A child showing behaviour changes', 'Communication has broken down', 'A major life transition — grief, loss, a move', ].map((item,i) => (
{i+1}
{item}
))}

); // ── B: Founder Bio — photo + navy band ─────────────────────────── const PosterB = () => (

Founder portrait
Meet Your Psychologist

Aarti Ahuja

{['MA Applied Psychology','NLP Trainer','Wellness Coach','1,000+ Sessions'].map(c => ( {c} ))}

A psychologist with an eclectic approach to therapy — specialising in stress, relationships and family counselling. Rooted in evidence, delivered with warmth.

); // ── C: Services grid ────────────────────────────────────────────── const PosterC = () => { const services = [ ['Stress & Anxiety','Tools to quiet the noise'], ['Sleep Training','Restore restful nights'], ['Family & Relationships','Build deeper bonds'], ['Grief & Loss','Navigate with care'], ['Depression','Find your footing again'], ['Trauma (PTSD)','Heal at your own pace'], ]; return (

What We Offer

How We Can Help

{services.map(([label,sub],i) => (
{label}
{sub}
))}
Open to all individuals, genders & identities

); }; // ── D: Type manifesto — cream, halo, navy headline ──────────────── const PosterD = () => (

Our Promise

Healing Is for Everyone.

No matter your story, your background, or where you are in your journey — support is here. Tatava Studio stands with every community.

); // ── E: Credentials band ─────────────────────────────────────────── const PosterE = () => (

Why Tatava

A Practice You Can Trust

{[['1,000+','Sessions'],['12 yrs','Practice'],['4.9','Rating'],['BHF','Partner']].map(([n,l]) => (
{n}
{l}
))}

“Every session is a step towards the life you want.”

— Aarti Ahuja, Founder

); // ── F: Event / Save the Date ────────────────────────────────────── const PosterF = () => (

TATAVA STUDIO
Save the Date
18
January 2026
Saturday · 6:00 PM IST

A Free Mindfulness Workshop

Evidence-based tools to reduce stress and reclaim calm — for professionals, parents and students.

{['Vikas Marg, New Delhi','Free · Limited Spots','Open to All'].map(tag => ( {tag} ))}

); window.HB_POSTER = [ {id:'hpo-01',name:'Editorial · 5 Signs', w:W,h:H,comp:PosterA}, {id:'hpo-02',name:'Founder Bio · Aarti Ahuja', w:W,h:H,comp:PosterB}, {id:'hpo-03',name:'Services Grid', w:W,h:H,comp:PosterC}, {id:'hpo-04',name:'Type Manifesto', w:W,h:H,comp:PosterD}, {id:'hpo-05',name:'Credentials Band', w:W,h:H,comp:PosterE}, {id:'hpo-06',name:'Event · Save the Date', w:W,h:H,comp:PosterF}, ]; })();