:root {
    --jhp-green: #0b6b49;
    --jhp-green-dark: #075a3d;
    --jhp-green-deep: #064b35;
    --jhp-green-soft: #edf5ef;
    --jhp-accent: #e96543;
    --jhp-accent-soft: #fff0e8;
    --jhp-bg: #f9f8f4;
    --jhp-surface: #ffffff;
    --jhp-text: #143c30;
    --jhp-text-soft: #5a6f67;
    --jhp-border: rgba(7, 90, 61, 0.10);
    --jhp-shadow: 0 8px 24px rgba(8, 70, 48, 0.07);
    --jhp-radius: 16px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body {
    margin: 0;
    padding: 0;
    background: var(--jhp-bg);
    color: var(--jhp-text);
    font-family: "Noto Sans Bengali", "Hind Siliguri", "Nirmala UI", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body.jigatola-homepage-body { line-height: 1.45; }
.jhp-site { background: var(--jhp-bg); overflow: hidden; }
.jhp-container { width: min(1200px, calc(100% - 42px)); margin: 0 auto; }

/* TOP UTILITY BAR */
.jhp-topbar {
    background: linear-gradient(90deg, var(--jhp-green-deep), var(--jhp-green));
    color: #fff;
    font-size: 14px;
}
.jhp-topbar-inner,
.jhp-header-inner,
.jhp-footer-top,
.jhp-footer-bottom,
.jhp-action-grid,
.jhp-two-col,
.jhp-section-head-inline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}
.jhp-topbar-inner { min-height: 34px; }
.jhp-location { font-weight: 650; }
.jhp-utility-links,
.jhp-nav,
.jhp-footer-nav { display: flex; align-items: center; gap: 13px; flex-wrap: wrap; }
.jhp-utility-links a,
.jhp-nav a,
.jhp-footer-nav a,
.jhp-topbar a { color: inherit; text-decoration: none; }
.jhp-utility-links a { font-weight: 650; }

/* HEADER */
.jhp-header {
    background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(6,75,53,.08);
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(10px);
}
.jhp-header-inner { min-height: 88px; }
.jhp-brand { display: flex; align-items: center; flex: 0 0 auto; }
.jhp-brand img {
    width: 235px;
    max-width: 100%;
    max-height: 74px;
    object-fit: contain;
    display: block;
}
.jhp-nav { justify-content: center; }
.jhp-nav a {
    font-size: 15px;
    font-weight: 800;
    color: #183d31;
    padding: 32px 4px 25px;
    position: relative;
}
.jhp-nav a:first-child::after {
    content: "";
    position: absolute;
    left: 20%;
    right: 20%;
    bottom: 18px;
    height: 2px;
    background: var(--jhp-green);
    border-radius: 4px;
}
.jhp-search-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(11,107,73,.13);
    display: grid;
    place-items: center;
    font-size: 25px;
    line-height: 1;
    color: var(--jhp-green);
    background: #fff;
}

/* HERO */
.jhp-hero {
    position: relative;
    background-size: cover;
    background-position: center 53%;
    overflow: hidden;
}
.jhp-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.02));
}
.jhp-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(4,43,28,.83) 0%, rgba(4,43,28,.65) 38%, rgba(4,43,28,.20) 73%, rgba(4,43,28,.08) 100%);
}
.jhp-hero-inner {
    position: relative;
    z-index: 2;
    min-height: 410px;
    display: flex;
    align-items: center;
    padding: 34px 0 36px;
}
.jhp-hero-copy { max-width: 660px; color: #fff; }
.jhp-hero h1 {
    margin: 0 0 2px;
    color: #fff !important;
    text-shadow: 0 3px 16px rgba(0,0,0,.22);
    font-size: clamp(54px, 6vw, 74px);
    line-height: 1;
    font-weight: 900;
}
.jhp-hero-tagline {
    margin: 2px 0 12px;
    color: #fff !important;
    text-shadow: 0 2px 12px rgba(0,0,0,.20);
    font-size: clamp(26px, 2.6vw, 34px);
    line-height: 1.15;
    font-weight: 900;
}
.jhp-hero-text {
    margin: 0 0 17px;
    max-width: 600px;
    color: #fff !important;
    text-shadow: 0 2px 10px rgba(0,0,0,.20);
    font-size: 17px;
    line-height: 1.55;
    font-weight: 620;
}
.jhp-searchbar {
    width: min(610px, 100%);
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,.98);
    border: 1px solid rgba(255,255,255,.92);
    border-radius: 11px;
    padding: 11px 15px;
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
}
.jhp-searchbar-icon { font-size: 18px; }
.jhp-searchbar input,
.jhp-searchbar input:focus,
.jhp-searchbar input:active {
    min-width: 0;
    border: 0;
    outline: 0;
    flex: 1;
    background: transparent !important;
    color: #294b40 !important;
    -webkit-text-fill-color: #294b40 !important;
    caret-color: #0b6b49;
    opacity: 1 !important;
    font: inherit;
    font-size: 14px;
}
.jhp-searchbar input::placeholder {
    color: #6b7f78 !important;
    -webkit-text-fill-color: #6b7f78 !important;
    opacity: 1 !important;
}
.jhp-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 15px; }
.jhp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 44px;
    padding: 11px 20px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 850;
    transition: transform .16s ease, box-shadow .16s ease, opacity .16s ease;
}
.jhp-btn:hover { transform: translateY(-1px); opacity: .97; box-shadow: 0 8px 20px rgba(8,70,48,.12); }
.jhp-btn-primary { background: var(--jhp-green); color: #fff; }
.jhp-btn-secondary,
.jhp-btn-accent { background: var(--jhp-accent); color: #fff; }

/* COMMON SECTIONS */
.jhp-section { padding: 28px 0; }
.jhp-section-head h2,
.jhp-about-copy h2 {
    margin: 0 0 4px;
    color: var(--jhp-green-dark);
    font-size: clamp(31px, 3vw, 41px);
    line-height: 1.08;
    font-weight: 900;
}
.jhp-section-head p { margin: 0; color: var(--jhp-text-soft); font-size: 16px; }
.jhp-card-grid { margin-top: 18px; display: grid; gap: 14px; }
.jhp-card-grid-6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

/* CATEGORY CARDS */
.jhp-card,
.jhp-mini-card,
.jhp-action-card,
.jhp-about-copy,
.jhp-about-media {
    background: #fff;
    border: 1px solid var(--jhp-border);
    border-radius: var(--jhp-radius);
    box-shadow: var(--jhp-shadow);
}
.jhp-card {
    padding: 18px 14px 16px;
    min-height: 166px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.jhp-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #f4eee9;
    font-size: 27px;
}
.jhp-card:nth-child(1) .jhp-icon,
.jhp-card:nth-child(3) .jhp-icon,
.jhp-card:nth-child(5) .jhp-icon { background: #fff0e9; }
.jhp-card:nth-child(2) .jhp-icon,
.jhp-card:nth-child(4) .jhp-icon,
.jhp-card:nth-child(6) .jhp-icon { background: #eaf4ee; }
.jhp-card h3,
.jhp-mini-card h3,
.jhp-action-card h3 {
    margin: 0 0 7px;
    color: var(--jhp-green-dark);
    font-weight: 900;
    line-height: 1.18;
}
.jhp-card h3 { font-size: 19px; }
.jhp-card p,
.jhp-mini-card p,
.jhp-action-card p,
.jhp-about-copy p { margin: 0; color: var(--jhp-text-soft); }
.jhp-card p { font-size: 14px; line-height: 1.4; }

/* ABOUT */
.jhp-two-col { align-items: stretch; }
.jhp-about-copy,
.jhp-about-media { flex: 1 1 0; overflow: hidden; }
.jhp-about-copy {
    position: relative;
    padding: 28px 30px;
    background: linear-gradient(135deg, #f3f8f3 0%, #eef6ef 100%);
}
.jhp-about-copy::after {
    content: "";
    position: absolute;
    right: -32px;
    bottom: -45px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    border: 1px solid rgba(7,90,61,.07);
    box-shadow: 0 0 0 28px rgba(7,90,61,.025), 0 0 0 56px rgba(7,90,61,.018);
}
.jhp-about-copy p { position: relative; z-index: 1; font-size: 16px; line-height: 1.65; max-width: 610px; }
.jhp-about-copy blockquote {
    position: relative;
    z-index: 1;
    margin: 13px 0 13px auto;
    width: max-content;
    max-width: 95%;
    color: var(--jhp-green-dark);
    font-size: 22px;
    line-height: 1.25;
    font-style: italic;
    transform: rotate(-3deg);
}
.jhp-about-copy .jhp-btn { position: relative; z-index: 1; margin-top: 3px; }
.jhp-about-media { min-height: 285px; }
.jhp-about-media img { width: 100%; height: 100%; min-height: 285px; object-fit: cover; display: block; }

/* CTA CARDS */
.jhp-action-grid { align-items: stretch; }
.jhp-action-card { flex: 1 1 0; padding: 24px 26px; }
.jhp-business { background: linear-gradient(135deg, #fff5ef 0%, #ffeadf 100%); }
.jhp-community { background: linear-gradient(135deg, #f2f9f4 0%, #e8f4ec 100%); }
.jhp-action-card h3 { font-size: 25px; }
.jhp-business h3 { color: #c94e31; }
.jhp-action-card p { font-size: 15px; line-height: 1.55; }
.jhp-action-card .jhp-btn { margin-top: 15px; }

/* TODAY */
.jhp-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: #e5f2e8;
    color: var(--jhp-green-dark);
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}
.jhp-card-grid-small .jhp-mini-card {
    padding: 16px 12px;
    min-height: 118px;
    text-align: center;
}
.jhp-mini-icon { font-size: 24px; margin-bottom: 7px; }
.jhp-mini-card h3 { font-size: 16px; }
.jhp-mini-card p { font-size: 12px; line-height: 1.35; }

/* FOOTER */
.jhp-footer {
    margin-top: 12px;
    padding-top: 22px;
    color: #fff;
    background: linear-gradient(90deg, #064b35 0%, #087451 100%);
}
.jhp-footer-top { align-items: center; padding-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,.18); }
.jhp-footer-brand { display: flex; align-items: center; gap: 18px; }
.jhp-footer-brand img { width: 190px; max-height: 72px; object-fit: contain; display: block; }
.jhp-footer-tag { margin: 0; font-size: 16px; line-height: 1.4; font-weight: 700; }
.jhp-footer-nav { justify-content: flex-end; font-size: 13px; font-weight: 700; }
.jhp-footer-bottom { padding: 14px 0 18px; color: rgba(255,255,255,.9); font-size: 12px; }
.jhp-footer-bottom p { margin: 0; }

/* MODAL / FORM - preserve v1.0.2 working behaviour */
body.jhp-modal-open { overflow: hidden; }
.jhp-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}
.jhp-modal.is-open { display: flex; }
.jhp-modal-backdrop { position: absolute; inset: 0; background: rgba(5,36,25,.72); backdrop-filter: blur(4px); }
.jhp-modal-dialog {
    position: relative;
    z-index: 2;
    width: min(860px, 100%);
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(4,39,27,.28);
    padding: 34px;
}
.jhp-modal-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: #eef5f1;
    color: var(--jhp-green-dark);
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
}
.jhp-modal-intro { padding-right: 50px; margin-bottom: 22px; }
.jhp-kicker { display: inline-block; color: var(--jhp-accent); font-weight: 800; font-size: 15px; margin-bottom: 6px; }
.jhp-modal-intro h2 {
    margin: 0 0 8px;
    color: var(--jhp-green-dark) !important;
    font-size: clamp(30px, 4vw, 42px);
    line-height: 1.1;
}
.jhp-modal-intro p { margin: 0; color: var(--jhp-text-soft); font-size: 17px; }
.jhp-form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.jhp-form-field { margin-bottom: 16px; }
.jhp-form-field-full { grid-column: 1 / -1; }
.jhp-form-field label { display: block; margin-bottom: 7px; color: var(--jhp-text); font-weight: 800; font-size: 15px; }
.jhp-form-field label span { color: var(--jhp-accent); }
.jhp-form-field input,
.jhp-form-field select,
.jhp-form-field textarea {
    width: 100%;
    border: 1px solid rgba(9,88,60,.18);
    border-radius: 12px;
    background: #fbfcfb;
    color: #183b31;
    font: inherit;
    font-size: 16px;
    padding: 12px 14px;
    outline: none;
}
.jhp-form-field input:focus,
.jhp-form-field select:focus,
.jhp-form-field textarea:focus { border-color: var(--jhp-green); box-shadow: 0 0 0 3px rgba(11,107,73,.10); }
.jhp-business-fields {
    display: none;
    background: #f5faf7;
    border: 1px solid rgba(11,107,73,.10);
    border-radius: 16px;
    padding: 18px;
    margin: 4px 0 18px;
}
.jhp-business-fields.is-visible { display: block; }
.jhp-form-alert { border-radius: 14px; padding: 14px 16px; margin-bottom: 20px; font-weight: 700; }
.jhp-form-alert-success { background: #e8f5ec; color: #0a643f; border: 1px solid rgba(10,100,63,.14); }
.jhp-form-alert-error { background: #fff0eb; color: #9f3e24; border: 1px solid rgba(159,62,36,.14); }
.jhp-form-privacy { color: var(--jhp-text-soft); font-size: 14px; margin: 2px 0 16px; }
.jhp-submit { min-width: 170px; border: 0; cursor: pointer; font: inherit; }
.jhp-honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    white-space: nowrap !important;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .jhp-card-grid-6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .jhp-header-inner { flex-wrap: wrap; padding: 10px 0; justify-content: center; }
    .jhp-nav a { padding: 8px 4px; }
    .jhp-nav a:first-child::after { bottom: 1px; }
    .jhp-search-icon { display: none; }
}
@media (max-width: 820px) {
    .jhp-topbar-inner,
    .jhp-footer-top,
    .jhp-footer-bottom,
    .jhp-two-col,
    .jhp-action-grid,
    .jhp-section-head-inline { flex-direction: column; align-items: flex-start; }
    .jhp-topbar-inner { padding: 6px 0; gap: 4px; }
    .jhp-header-inner { gap: 8px; }
    .jhp-brand img { width: 215px; max-height: 68px; }
    .jhp-hero-inner { min-height: 420px; padding: 32px 0; }
    .jhp-card-grid-6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .jhp-footer-brand,
    .jhp-footer-nav { width: 100%; }
    .jhp-footer-nav { justify-content: flex-start; }
    .jhp-modal { padding: 12px; align-items: flex-start; }
    .jhp-modal-dialog { max-height: calc(100vh - 24px); padding: 26px 20px; border-radius: 18px; }
    .jhp-form-grid { grid-template-columns: 1fr; }
    .jhp-form-field-full { grid-column: auto; }
}
@media (max-width: 560px) {
    .jhp-container { width: min(100%, calc(100% - 24px)); }
    .jhp-nav { gap: 9px; justify-content: center; }
    .jhp-nav a { font-size: 13px; }
    .jhp-card-grid-6 { grid-template-columns: 1fr; }
    .jhp-hero h1 { font-size: 48px; }
    .jhp-hero-tagline { font-size: 23px; }
    .jhp-hero-text { font-size: 15px; }
    .jhp-searchbar { padding: 10px 12px; }
    .jhp-btn { width: 100%; }
    .jhp-card { min-height: 145px; }
    .jhp-about-copy { padding: 23px 20px; }
}

/* v1.0.7: functional on-page search */
.jhp-searchbar-icon {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    line-height: 1;
    flex: 0 0 auto;
}
.jhp-searchbar input[type="search"]::-webkit-search-cancel-button {
    cursor: pointer;
}
.jhp-search-feedback {
    width: min(610px, 100%);
    margin-top: 9px;
    padding: 10px 14px;
    border-radius: 10px;
    background: rgba(255,255,255,.96);
    color: var(--jhp-green);
    font-size: 14px;
    font-weight: 750;
    box-shadow: 0 8px 20px rgba(0,0,0,.10);
}
.jhp-search-match {
    outline: 3px solid rgba(242, 102, 62, .80);
    outline-offset: 4px;
    box-shadow: 0 12px 30px rgba(0,0,0,.14);
    transition: outline-color .2s ease, box-shadow .2s ease;
}
.jhp-search-icon {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    font: inherit;
}


/* v1.0.8: first live local update and editorial article */
.jhp-mini-card-link {
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.jhp-mini-card-link:hover,
.jhp-mini-card-link:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(8,70,48,.13);
    border-color: rgba(11,107,73,.22);
    outline: none;
}
.jhp-mini-card-live {
    background: linear-gradient(180deg, #fff 0%, #f6fbf7 100%);
}
.jhp-mini-badge {
    position: absolute;
    top: 9px;
    right: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 24px;
    padding: 3px 8px;
    border-radius: 999px;
    background: var(--jhp-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.jhp-article-body { background: #f7f6f1; }
.jhp-article-main { padding: 34px 0 52px; }
.jhp-news-article { max-width: 980px; }
.jhp-back-link {
    display: inline-flex;
    margin-bottom: 24px;
    color: var(--jhp-green-dark);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}
.jhp-back-link:hover { text-decoration: underline; }
.jhp-article-kicker {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: var(--jhp-accent-soft);
    color: #b8472d;
    font-size: 13px;
    font-weight: 900;
    margin-bottom: 13px;
}
.jhp-news-article > h1 {
    margin: 0;
    max-width: 820px;
    color: var(--jhp-green-dark) !important;
    font-size: clamp(42px, 6vw, 68px);
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.02em;
}
.jhp-article-deck {
    margin: 10px 0 7px;
    color: #3f5d53;
    font-size: clamp(23px, 3vw, 32px);
    line-height: 1.25;
    font-weight: 760;
}
.jhp-article-meta {
    color: #718078;
    font-size: 14px;
    font-weight: 700;
}
.jhp-article-meta span { margin: 0 7px; }
.jhp-article-figure {
    margin: 28px 0 0;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--jhp-border);
    box-shadow: var(--jhp-shadow);
}
.jhp-article-figure img {
    display: block;
    width: 100%;
    max-height: 520px;
    object-fit: cover;
}
.jhp-article-figure figcaption {
    padding: 11px 16px 13px;
    color: #6a7b74;
    font-size: 12px;
    line-height: 1.5;
}
.jhp-article-content {
    max-width: 760px;
    margin: 30px auto 0;
    color: #203f35;
    font-size: 19px;
    line-height: 1.82;
}
.jhp-article-content p { margin: 0 0 22px; }
.jhp-article-content .jhp-short-line {
    margin: 0 0 6px;
    color: var(--jhp-green-dark);
    font-size: 27px;
    line-height: 1.3;
    font-weight: 900;
}
.jhp-article-content .jhp-short-line + .jhp-short-line { margin-bottom: 26px; }
.jhp-article-content h2 {
    margin: 38px 0 12px;
    color: var(--jhp-green-dark) !important;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 900;
}
.jhp-fact-box {
    margin: 28px 0;
    padding: 22px 24px;
    border-left: 5px solid var(--jhp-accent);
    border-radius: 14px;
    background: #fff3ec;
}
.jhp-fact-box strong {
    display: block;
    margin-bottom: 6px;
    color: #a94029;
    font-size: 18px;
}
.jhp-fact-box p { margin: 0; }
.jhp-article-checklist {
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}
.jhp-article-checklist li {
    position: relative;
    margin: 0 0 12px;
    padding: 12px 14px 12px 46px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--jhp-border);
}
.jhp-article-checklist li::before {
    content: "✓";
    position: absolute;
    left: 15px;
    top: 10px;
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #e4f3e9;
    color: var(--jhp-green);
    font-size: 14px;
    font-weight: 950;
}
.jhp-report-box {
    margin: 38px 0 34px;
    padding: 26px;
    border-radius: 18px;
    background: linear-gradient(135deg, #0a6848 0%, #07563d 100%);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.jhp-report-label {
    display: block;
    margin-bottom: 4px;
    color: #d7f1e4;
    font-size: 13px;
    font-weight: 850;
}
.jhp-report-box h2 {
    margin: 0 0 6px;
    color: #fff !important;
    font-size: 27px;
}
.jhp-report-box p { margin: 0; color: rgba(255,255,255,.90); font-size: 16px; line-height: 1.6; }
.jhp-report-box .jhp-btn { flex: 0 0 auto; white-space: nowrap; }
.jhp-sources {
    margin-top: 36px;
    padding-top: 28px;
    border-top: 1px solid rgba(7,90,61,.14);
}
.jhp-sources h2 { margin-top: 0; font-size: 26px; }
.jhp-sources p { color: #62736c; font-size: 15px; line-height: 1.65; }
.jhp-source-links { display: flex; flex-wrap: wrap; gap: 10px; }
.jhp-source-links a {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 12px;
    border-radius: 10px;
    background: #fff;
    border: 1px solid rgba(7,90,61,.14);
    color: var(--jhp-green-dark);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}
.jhp-source-links a:hover { border-color: rgba(7,90,61,.35); box-shadow: 0 5px 14px rgba(8,70,48,.06); }

@media (max-width: 820px) {
    .jhp-article-main { padding-top: 24px; }
    .jhp-article-content { font-size: 18px; line-height: 1.75; }
    .jhp-report-box { flex-direction: column; align-items: flex-start; }
    .jhp-report-box .jhp-btn { width: 100%; }
}
@media (max-width: 560px) {
    .jhp-news-article > h1 { font-size: 42px; }
    .jhp-article-deck { font-size: 22px; }
    .jhp-article-content { margin-top: 22px; font-size: 17px; }
    .jhp-article-content h2 { font-size: 27px; }
    .jhp-article-figure { border-radius: 14px; }
    .jhp-fact-box { padding: 18px; }
    .jhp-report-box { padding: 22px 18px; }
}

/* v1.1.0: beta business directory and Leather Zone profile */
.jhp-card-link { text-decoration: none; color: inherit; }
.jhp-card-link:hover,
.jhp-card-link:focus-visible { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(8,70,48,.13); outline: none; }
.jhp-beta-note { margin: -2px 0 16px; color: #7d4a38; font-size: 13px; font-weight: 850; }

.jhp-business-body { background: #f7f6f1; }
.jhp-directory-main { min-height: 70vh; }
.jhp-directory-hero {
    background: linear-gradient(135deg, #07573e 0%, #0b7452 58%, #124c3d 100%);
    color: #fff;
    overflow: hidden;
}
.jhp-directory-hero-inner { min-height: 390px; display: flex; align-items: center; padding: 58px 0; }
.jhp-directory-kicker,
.jhp-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 11px;
    border-radius: 999px;
    background: #e8f6ed;
    color: #0b684a;
    font-size: 13px;
    font-weight: 900;
}
.jhp-directory-hero .jhp-directory-kicker { background: rgba(255,255,255,.14); color: #fff; }
.jhp-directory-hero h1 {
    margin: 14px 0 12px;
    max-width: 760px;
    color: #fff !important;
    font-size: clamp(48px, 7vw, 78px);
    line-height: 1.04;
    font-weight: 950;
}
.jhp-directory-hero p { max-width: 690px; margin: 0; color: rgba(255,255,255,.92); font-size: 19px; line-height: 1.7; }
.jhp-directory-actions { display: flex; align-items: center; gap: 16px; margin-top: 24px; flex-wrap: wrap; }
.jhp-directory-actions span { color: #d9eee5; font-size: 14px; font-weight: 750; }

.jhp-business-listing-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(9,88,60,.12);
    box-shadow: 0 14px 34px rgba(8,70,48,.08);
    text-decoration: none;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}
.jhp-business-listing-card:hover,
.jhp-business-listing-card:focus-visible { transform: translateY(-3px); box-shadow: 0 20px 46px rgba(8,70,48,.14); outline: none; }
.jhp-business-listing-photo { min-height: 370px; background: #eee; }
.jhp-business-listing-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.jhp-business-listing-content { padding: 34px; position: relative; display: flex; flex-direction: column; justify-content: center; }
.jhp-business-listing-logo { width: 160px; height: 86px; display: flex; align-items: center; margin-bottom: 10px; }
.jhp-business-listing-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }
.jhp-business-beta-badge {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 5px 9px;
    border-radius: 999px;
    background: #fff0e8;
    color: #b64d30;
    font-size: 12px;
    font-weight: 900;
}
.jhp-business-listing-content h2 { margin: 10px 0 2px; color: var(--jhp-green-dark) !important; font-size: 38px; line-height: 1.1; }
.jhp-business-category { margin: 0 0 10px; color: #335d50; font-size: 19px; font-weight: 800; }
.jhp-business-address { margin: 0 0 20px; color: #708078; font-size: 15px; }
.jhp-business-view { color: var(--jhp-green); font-weight: 900; }

.jhp-directory-cta { padding-top: 8px; }
.jhp-roadshow-box {
    padding: 34px 38px;
    border-radius: 22px;
    background: linear-gradient(135deg, #eef8f2 0%, #fff6f1 100%);
    border: 1px solid rgba(9,88,60,.10);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}
.jhp-roadshow-box > div { max-width: 760px; }
.jhp-roadshow-box span { color: var(--jhp-green); font-size: 13px; font-weight: 900; }
.jhp-roadshow-box h2 { margin: 6px 0 9px; color: var(--jhp-green-dark) !important; font-size: clamp(28px, 4vw, 40px); line-height: 1.15; }
.jhp-roadshow-box p { margin: 0; color: #536c63; font-size: 16px; line-height: 1.65; }
.jhp-roadshow-box .jhp-btn { flex: 0 0 auto; }

.jhp-profile-hero {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}
.jhp-profile-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,24,18,.82) 0%, rgba(3,24,18,.45) 48%, rgba(3,24,18,.18) 100%); }
.jhp-profile-hero-inner { position: relative; z-index: 1; padding: 70px 0 54px; }
.jhp-profile-card {
    width: min(620px, 100%);
    padding: 30px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 20px 55px rgba(0,0,0,.22);
}
.jhp-profile-logo { width: 190px; height: 90px; display: flex; align-items: center; margin-bottom: 10px; }
.jhp-profile-logo img { width: 100%; height: 100%; object-fit: contain; object-position: left center; }
.jhp-profile-card h1 { margin: 10px 0 3px; color: var(--jhp-green-dark) !important; font-size: clamp(48px, 7vw, 70px); line-height: 1.02; font-weight: 950; }
.jhp-profile-subtitle { margin: 0; color: #365f52; font-size: 22px; font-weight: 820; }
.jhp-profile-place { margin: 11px 0 0; color: #66766f; font-size: 15px; line-height: 1.55; }
.jhp-profile-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.jhp-btn-whatsapp { background: #1f9f60; color: #fff !important; }
.jhp-btn-light { background: #f1f5f2; color: var(--jhp-green-dark) !important; border: 1px solid rgba(7,90,61,.12); }

.jhp-profile-two-col { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); gap: 34px; align-items: start; }
.jhp-profile-intro h2,
.jhp-profile-social h2 { margin: 12px 0 12px; color: var(--jhp-green-dark) !important; font-size: clamp(32px, 4.5vw, 48px); line-height: 1.15; }
.jhp-profile-intro p,
.jhp-profile-social p { color: #445f56; font-size: 18px; line-height: 1.78; }
.jhp-profile-facts { padding: 26px; border-radius: 18px; background: #fff; border: 1px solid rgba(9,88,60,.12); box-shadow: 0 10px 25px rgba(8,70,48,.06); }
.jhp-profile-facts h3 { margin: 0 0 12px; color: var(--jhp-green-dark); font-size: 24px; }
.jhp-profile-facts dl { margin: 0; }
.jhp-profile-facts dl div { padding: 13px 0; border-top: 1px solid rgba(9,88,60,.10); }
.jhp-profile-facts dt { margin-bottom: 4px; color: #748179; font-size: 12px; font-weight: 850; }
.jhp-profile-facts dd { margin: 0; color: #21483b; font-size: 15px; line-height: 1.55; font-weight: 700; }
.jhp-profile-facts a { color: var(--jhp-green); text-decoration: none; }

.jhp-product-chip-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.jhp-product-chip-grid span { padding: 11px 15px; border-radius: 999px; background: #fff; border: 1px solid rgba(9,88,60,.12); color: var(--jhp-green-dark); font-size: 15px; font-weight: 850; box-shadow: 0 5px 14px rgba(8,70,48,.04); }

.jhp-business-gallery { display: grid; grid-template-columns: 1.35fr .8fr; grid-template-rows: 330px 330px; gap: 14px; }
.jhp-business-gallery figure { margin: 0; overflow: hidden; border-radius: 18px; background: #eee; border: 1px solid rgba(9,88,60,.10); }
.jhp-business-gallery .jhp-gallery-wide { grid-row: 1 / span 2; }
.jhp-business-gallery img { width: 100%; height: 100%; object-fit: cover; display: block; }

.jhp-profile-social-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 34px; align-items: start; }
.jhp-social-link-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.jhp-social-link-grid a { padding: 18px; border-radius: 14px; background: #fff; border: 1px solid rgba(9,88,60,.12); color: var(--jhp-green-dark); text-decoration: none; display: flex; flex-direction: column; gap: 4px; }
.jhp-social-link-grid a:hover { border-color: rgba(9,88,60,.30); box-shadow: 0 8px 18px rgba(8,70,48,.07); }
.jhp-social-link-grid strong { font-size: 16px; }
.jhp-social-link-grid span { color: #718078; font-size: 13px; overflow-wrap: anywhere; }

.jhp-proof-box { padding: 24px 28px; border-radius: 18px; background: #fff; border: 1px solid rgba(9,88,60,.12); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.jhp-proof-box > div { display: flex; flex-direction: column; gap: 4px; }
.jhp-proof-box span { color: #718078; font-size: 12px; font-weight: 850; }
.jhp-proof-box strong { color: var(--jhp-green-dark); font-size: 24px; }
.jhp-proof-box small { color: #7b8580; line-height: 1.5; }

@media (max-width: 900px) {
    .jhp-business-listing-card,
    .jhp-profile-two-col,
    .jhp-profile-social-grid { grid-template-columns: 1fr; }
    .jhp-business-listing-photo { min-height: 300px; }
    .jhp-business-gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 300px; }
    .jhp-business-gallery .jhp-gallery-wide { grid-column: 1 / span 2; grid-row: auto; }
    .jhp-roadshow-box,
    .jhp-proof-box { flex-direction: column; align-items: flex-start; }
    .jhp-roadshow-box .jhp-btn,
    .jhp-proof-box .jhp-btn { width: 100%; }
}
@media (max-width: 620px) {
    .jhp-directory-hero-inner { min-height: 330px; padding: 44px 0; }
    .jhp-directory-hero h1 { font-size: 48px; }
    .jhp-business-listing-content { padding: 24px 20px; }
    .jhp-profile-hero { min-height: 560px; background-position: 58% center; }
    .jhp-profile-hero-inner { padding: 44px 0 28px; }
    .jhp-profile-card { padding: 22px 18px; border-radius: 18px; }
    .jhp-profile-card h1 { font-size: 48px; }
    .jhp-profile-subtitle { font-size: 19px; }
    .jhp-profile-actions .jhp-btn { width: 100%; }
    .jhp-business-gallery { display: block; }
    .jhp-business-gallery figure { height: 280px; margin-bottom: 12px; }
    .jhp-social-link-grid { grid-template-columns: 1fr; }
    .jhp-roadshow-box { padding: 26px 20px; }
}

/* v1.1.1: stable business taxonomy and category landing pages */
.jhp-directory-categories { padding-bottom: 26px; }
.jhp-directory-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}
.jhp-directory-category-card {
    min-height: 132px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    border: 1px solid rgba(9,88,60,.12);
    color: inherit;
    text-decoration: none;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    box-shadow: 0 8px 22px rgba(8,70,48,.05);
    transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}
.jhp-directory-category-card:hover,
.jhp-directory-category-card:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(9,88,60,.28);
    box-shadow: 0 15px 34px rgba(8,70,48,.10);
    outline: none;
}
.jhp-directory-category-icon,
.jhp-category-hero-icon,
.jhp-category-empty-icon {
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: #edf7f1;
    width: 58px;
    height: 58px;
    font-size: 29px;
}
.jhp-directory-category-copy { min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.jhp-directory-category-copy strong { color: var(--jhp-green-dark); font-size: 20px; line-height: 1.25; }
.jhp-directory-category-copy small { color: #687971; font-size: 14px; line-height: 1.5; }
.jhp-directory-category-count {
    padding: 5px 9px;
    border-radius: 999px;
    background: #f4f7f5;
    color: #607169;
    font-size: 12px;
    font-weight: 850;
    white-space: nowrap;
}

.jhp-category-hero {
    padding: 34px 0 46px;
    background: linear-gradient(180deg, #edf7f1 0%, #f7f6f1 100%);
    border-bottom: 1px solid rgba(9,88,60,.08);
}
.jhp-business-breadcrumb,
.jhp-profile-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    line-height: 1.4;
}
.jhp-business-breadcrumb { margin-bottom: 26px; color: #6c7b74; }
.jhp-business-breadcrumb a,
.jhp-profile-breadcrumb a { color: var(--jhp-green); text-decoration: none; font-weight: 850; }
.jhp-business-breadcrumb a:hover,
.jhp-profile-breadcrumb a:hover { text-decoration: underline; }
.jhp-category-hero-copy { display: flex; align-items: flex-start; gap: 20px; }
.jhp-category-hero-icon { width: 78px; height: 78px; font-size: 39px; flex: 0 0 auto; box-shadow: 0 8px 22px rgba(8,70,48,.08); }
.jhp-category-hero h1 {
    margin: 10px 0 8px;
    color: var(--jhp-green-dark) !important;
    font-size: clamp(40px, 6vw, 62px);
    line-height: 1.08;
    font-weight: 950;
}
.jhp-category-hero p { margin: 0; max-width: 760px; color: #536c63; font-size: 17px; line-height: 1.65; }
.jhp-category-empty-state {
    max-width: 760px;
    margin: 0 auto;
    padding: 42px 34px;
    border-radius: 22px;
    background: #fff;
    border: 1px solid rgba(9,88,60,.12);
    text-align: center;
    box-shadow: 0 12px 30px rgba(8,70,48,.06);
}
.jhp-category-empty-icon { margin: 0 auto 16px; width: 68px; height: 68px; font-size: 34px; }
.jhp-category-empty-state h2 { margin: 0 0 9px; color: var(--jhp-green-dark) !important; font-size: 34px; line-height: 1.2; }
.jhp-category-empty-state p { margin: 0 auto 22px; max-width: 620px; color: #5c7068; font-size: 16px; line-height: 1.7; }

.jhp-profile-breadcrumb { margin-bottom: 12px; color: #718078; }
.jhp-profile-category-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.jhp-profile-category-links a {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: #edf7f1;
    border: 1px solid rgba(9,88,60,.10);
    color: var(--jhp-green-dark);
    font-size: 12px;
    font-weight: 850;
    text-decoration: none;
}
.jhp-profile-category-links a:hover { border-color: rgba(9,88,60,.28); }

@media (max-width: 780px) {
    .jhp-directory-category-grid { grid-template-columns: 1fr; }
    .jhp-directory-category-card { grid-template-columns: 52px minmax(0, 1fr); }
    .jhp-directory-category-count { grid-column: 2; justify-self: start; }
    .jhp-directory-category-icon { width: 52px; height: 52px; font-size: 26px; }
    .jhp-category-hero-copy { flex-direction: column; }
}
@media (max-width: 520px) {
    .jhp-directory-category-card { padding: 17px; gap: 12px; }
    .jhp-directory-category-copy strong { font-size: 18px; }
    .jhp-category-hero { padding: 26px 0 36px; }
    .jhp-category-hero h1 { font-size: 40px; }
    .jhp-category-empty-state { padding: 30px 20px; }
    .jhp-category-empty-state h2 { font-size: 28px; }
}
