/* =========================================================================
   HB MIZAN — Legal Intelligence & Advisory
   Design language: editorial, premium, restrained.
   ========================================================================= */

:root {
    /* Brand */
    --emerald:        #0F5D46;
    --emerald-dark:   #123D35;
    --emerald-light:  #2D7A63;
    --gold:           #D4AF37;
    --gold-light:     #E6C96A;
    --off-white:      #FAFAF8;
    --charcoal:       #1B1B1B;
    --gray-light:     #F4F5F6;
    --border:         #E4E7EB;

    --text:           #1B1B1B;
    --text-muted:     #5b6660;
    --text-soft:      #68716b;

    --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --maxw: 1200px;
    --radius: 14px;
    --radius-sm: 8px;
    --shadow-sm: 0 1px 2px rgba(18,61,53,.04), 0 2px 8px rgba(18,61,53,.05);
    --shadow-md: 0 8px 30px rgba(18,61,53,.08);
    --shadow-lg: 0 24px 60px rgba(18,61,53,.12);
    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ------------------------------------------------------------------ Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--off-white);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; height: auto; }
a { color: var(--emerald); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--emerald-dark); }
ul { list-style: none; padding: 0; }

/* Visible keyboard focus everywhere (mouse clicks unaffected) */
:focus-visible { outline: 2px solid var(--emerald); outline-offset: 2px; border-radius: 3px; }
.bg-emerald :focus-visible, .hero :focus-visible, .site-footer :focus-visible,
.page-hero :focus-visible, .cta-band :focus-visible { outline-color: var(--gold-light); }

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--charcoal); letter-spacing: -.01em; }
h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
p { color: var(--text-muted); }

.container { max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }
.section { padding: clamp(64px, 9vw, 120px) 0; }
.section-sm { padding: clamp(48px, 6vw, 80px) 0; }
.bg-emerald { background: var(--emerald-dark); color: #fff; }
.bg-gray { background: var(--gray-light); }
.bg-white { background: #fff; }

.skip-link { position: absolute; left: -999px; top: 0; background: var(--emerald); color:#fff; padding: 10px 16px; z-index: 999; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; color:#fff; }

/* ---------------------------------------------------------------- Eyebrow */
.eyebrow {
    display: inline-flex; align-items: center; gap: 10px;
    font-family: var(--font-body); font-weight: 600;
    font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
    color: var(--emerald);
}
.eyebrow::before { content: ""; width: 28px; height: 1.5px; background: var(--gold); }
.bg-emerald .eyebrow { color: var(--gold-light); }
.bg-emerald .eyebrow::before { background: var(--gold); }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head p { margin-top: 16px; font-size: 1.12rem; }
.lead { font-size: 1.2rem; color: var(--text-muted); line-height: 1.7; }

/* ---------------------------------------------------------------- Buttons */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: var(--font-body); font-weight: 600; font-size: .95rem;
    padding: 14px 28px; border-radius: 100px; border: 1.5px solid transparent;
    cursor: pointer; transition: all .25s var(--ease); white-space: nowrap;
    line-height: 1;
}
.btn-sm { padding: 10px 20px; font-size: .875rem; }
.btn-block { width: 100%; }
.btn-primary { background: var(--emerald); color: #fff; border-color: var(--emerald); }
.btn-primary:hover { background: var(--emerald-dark); border-color: var(--emerald-dark); color:#fff; transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-outline { background: transparent; color: var(--emerald); border-color: var(--emerald); }
.btn-outline:hover { background: var(--emerald); color: #fff; }
.btn-gold { background: var(--gold); color: var(--charcoal); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--charcoal); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.35); }
.btn-ghost-light:hover { background: #fff; color: var(--emerald-dark); border-color:#fff; }
.btn .arrow { transition: transform .25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .95rem; }
.link-more .arrow { transition: transform .25s var(--ease); }
.link-more:hover .arrow { transform: translateX(4px); }

/* ----------------------------------------------------------------- Header */
.site-header {
    position: sticky; top: 0; z-index: 100;
    background: rgba(250,250,248,.82);
    backdrop-filter: saturate(180%) blur(14px);
    -webkit-backdrop-filter: saturate(180%) blur(14px);
    border-bottom: 1px solid transparent;
    transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s;
}
.site-header.scrolled { border-bottom-color: var(--border); box-shadow: 0 4px 24px rgba(18,61,53,.05); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 78px; }
.brand-logo { height: 46px; width: auto; }
.primary-nav ul { display: flex; align-items: center; gap: 4px; }
.primary-nav a {
    display: block; padding: 8px 14px; border-radius: 8px;
    font-size: .93rem; font-weight: 500; color: var(--charcoal);
    position: relative;
}
.primary-nav a:hover { color: var(--emerald); background: rgba(15,93,70,.05); }
.primary-nav a.is-active { color: var(--emerald); }
.primary-nav a.is-active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 2px;
    background: var(--gold); border-radius: 2px;
}
.header-actions { display: flex; align-items: center; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    position: fixed; inset: 78px 0 auto 0; background: var(--off-white);
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow-lg);
    transform: translateY(-120%); transition: transform .35s var(--ease);
    z-index: 99; max-height: calc(100vh - 78px); overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { padding: 16px 24px 28px; }
.mobile-nav a { display: block; padding: 14px 8px; font-size: 1.05rem; font-weight: 500; color: var(--charcoal); border-bottom: 1px solid var(--border); }
.mobile-nav a.is-active { color: var(--emerald); }
.mobile-nav-cta { margin-top: 18px; }
.mobile-nav-cta a { border: 0; }

/* ------------------------------------------------------------------- Hero */
.hero {
    position: relative; overflow: hidden;
    background: linear-gradient(155deg, #0d4c3a 0%, #123D35 55%, #0c332c 100%);
    color: #fff; padding: clamp(90px, 12vw, 150px) 0 clamp(70px, 9vw, 120px);
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(212,175,55,.12) 1px, transparent 1px);
    background-size: 26px 26px; opacity: .4; pointer-events: none;
}
.hero::after {
    content: ""; position: absolute; right: -12%; top: -10%; width: 620px; height: 620px;
    background: radial-gradient(circle, rgba(45,122,99,.55) 0%, transparent 65%);
    pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.25fr .9fr; gap: 60px; align-items: center; }
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: #fff; margin: 22px 0; }
.hero h1 .accent { color: var(--gold-light); font-style: italic; font-weight: 500; }
.hero-sub { font-family: var(--font-head); font-size: clamp(1.3rem, 2.4vw, 1.7rem); color: rgba(255,255,255,.92); font-weight: 500; margin-bottom: 22px; font-style: italic; }
.hero p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 560px; }
.hero-tagline { margin-top: 26px !important; font-weight: 600 !important; color: #fff !important; font-size: 1.05rem !important; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }

.hero-figure { position: relative; }
.hero-figure img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; object-position: top center; border-radius: 18px; box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.hero-figure::before {
    content: ""; position: absolute; inset: -14px -14px 24px 24px;
    border: 1.5px solid rgba(212,175,55,.5); border-radius: 18px; z-index: 1;
}
.hero-badge {
    position: absolute; z-index: 3; left: -28px; bottom: 34px;
    background: #fff; color: var(--charcoal); border-radius: 14px; padding: 16px 20px;
    box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; max-width: 260px;
}
.hero-badge .dot { width: 44px; height: 44px; border-radius: 12px; background: var(--gray-light); display: grid; place-items: center; flex-shrink: 0; }
.hero-badge strong { display: block; font-family: var(--font-head); font-size: 1.05rem; }
.hero-badge span { font-size: .82rem; color: var(--text-soft); }

/* Trust strip */
.trust-strip { border-top: 1px solid rgba(255,255,255,.12); margin-top: 60px; padding-top: 30px; position: relative; z-index: 2; }
.trust-strip ul { display: flex; flex-wrap: wrap; gap: 12px 30px; }
.trust-strip li { color: rgba(255,255,255,.72); font-size: .82rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; display: flex; align-items: center; gap: 10px; }
.trust-strip li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* --------------------------------------------------------------- Sections */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Service cards */
.service-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 34px 30px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
    position: relative; overflow: hidden;
}
.service-card::after { content:""; position:absolute; left:0; top:0; width:100%; height:3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 54px; height: 54px; border-radius: 14px; background: rgba(15,93,70,.08); display: grid; place-items: center; margin-bottom: 22px; color: var(--emerald); }
.service-icon svg { width: 26px; height: 26px; }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: .98rem; }

/* Focus / practice list cards */
.focus-card {
    background: #fff; border: 1px solid var(--border); border-radius: var(--radius);
    padding: 32px 30px; transition: all .3s var(--ease); height: 100%;
}
.focus-card:hover { border-color: var(--emerald-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.focus-num { font-family: var(--font-head); font-style: italic; color: var(--gold); font-size: 1.1rem; margin-bottom: 14px; }
.focus-card h3 { font-size: 1.3rem; margin-bottom: 10px; }
.focus-card p { font-size: .96rem; }
.focus-card ul { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 8px; }
.focus-card ul li { font-size: .8rem; font-weight: 500; color: var(--emerald); background: rgba(15,93,70,.06); padding: 5px 12px; border-radius: 100px; }

/* Split feature */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split-figure { position: relative; }
.split-figure img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: top center; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.split-figure .frame { position: absolute; inset: -16px 16px 16px -16px; border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.check-list { margin-top: 26px; display: grid; gap: 14px; }
.check-list li { display: flex; gap: 14px; align-items: flex-start; color: var(--text-muted); }
.check-list li svg { flex-shrink: 0; margin-top: 3px; color: var(--emerald); }
.check-list strong { color: var(--charcoal); }

/* Topic chips */
.topic-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.topic-chip {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: 100px; background: #fff; border: 1px solid var(--border);
    font-weight: 500; font-size: .95rem; color: var(--charcoal); transition: all .25s var(--ease);
}
.topic-chip:hover { background: var(--emerald); color: #fff; border-color: var(--emerald); transform: translateY(-2px); }
.topic-chip::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* Stats */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 28px; }
.stat { text-align: center; }
.stat .num { font-family: var(--font-head); font-size: clamp(2.4rem,4vw,3.2rem); color: var(--gold-light); font-weight: 600; }
.bg-emerald .stat .num { color: var(--gold-light); }
.stat .lbl { font-size: .9rem; color: rgba(255,255,255,.72); letter-spacing: .04em; }

/* ------------------------------------------------------------ Article cards */
.article-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: all .3s var(--ease); height: 100%; }
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.article-thumb { aspect-ratio: 16/10; overflow: hidden; position: relative; background: var(--emerald-dark); }
.article-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.article-card:hover .article-thumb img { transform: scale(1.05); }
.article-thumb.placeholder { display: grid; place-items: center; }
.article-thumb.placeholder .mono { font-family: var(--font-head); font-size: 2.4rem; color: rgba(212,175,55,.4); font-style: italic; }
.article-cat {
    position: absolute; left: 14px; top: 14px; z-index: 2;
    background: rgba(255,255,255,.95); color: var(--emerald); font-size: .72rem; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
}
.article-body { padding: 26px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.article-meta { font-size: .82rem; color: var(--text-soft); display: flex; gap: 12px; margin-bottom: 12px; }
.article-meta span { display: inline-flex; align-items: center; gap: 6px; }
.article-body h3 { font-size: 1.32rem; line-height: 1.25; margin-bottom: 12px; }
.article-body h3 a { color: var(--charcoal); }
.article-body h3 a:hover { color: var(--emerald); }
.article-body p { font-size: .96rem; flex: 1; }
.article-foot { margin-top: 18px; }

/* Featured (large) article */
.article-feature { display: grid; grid-template-columns: 1.1fr 1fr; background:#fff; border:1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.article-feature .article-thumb { aspect-ratio: auto; height: 100%; min-height: 320px; }
.article-feature .article-body { padding: clamp(28px,4vw,52px); justify-content: center; }
.article-feature h3 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); }

/* ---------------------------------------------------------------- CTA band */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(155deg, #0d4c3a, #123D35); color:#fff; border-radius: 22px; padding: clamp(48px,6vw,72px); text-align: center; }
.cta-band::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(212,175,55,.14) 1px, transparent 1px); background-size: 24px 24px; opacity:.5; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.82); max-width: 620px; margin: 18px auto 0; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 34px; }
.cta-contact { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; margin-top: 40px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,.15); }
.cta-contact .item .lbl { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold-light); }
.cta-contact .item a, .cta-contact .item strong { color:#fff; font-size: 1.1rem; font-family: var(--font-head); }

/* ------------------------------------------------------------- Page header */
.page-hero { background: linear-gradient(155deg, #0d4c3a, #123D35); color: #fff; padding: clamp(70px,9vw,120px) 0 clamp(56px,7vw,90px); position: relative; overflow: hidden; }
.page-hero::before { content:""; position:absolute; inset:0; background-image: radial-gradient(rgba(212,175,55,.1) 1px, transparent 1px); background-size: 26px 26px; opacity:.4; }
.page-hero .inner { position: relative; z-index: 2; max-width: 780px; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { color: #fff; margin: 20px 0 18px; }
.page-hero p { color: rgba(255,255,255,.8); font-size: 1.15rem; max-width: 640px; }
.breadcrumb { display: flex; gap: 8px; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 4px; position: relative; z-index: 2; }
.breadcrumb a { color: rgba(255,255,255,.75); }
.breadcrumb a:hover { color: var(--gold-light); }

/* ------------------------------------------------------------------ Founder */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: 60px; align-items: center; }
.founder-figure { position: relative; }
.founder-figure img { border-radius: var(--radius); box-shadow: var(--shadow-md); width: 100%; }
.founder-figure .frame { position: absolute; inset: 18px -18px -18px 18px; border: 1.5px solid var(--gold); border-radius: var(--radius); z-index: -1; }
.founder-figure .credential {
    position: absolute; left: 18px; bottom: 18px; right: 18px; z-index: 2;
    background: rgba(18,61,53,.9); backdrop-filter: blur(6px); color:#fff;
    border-radius: 12px; padding: 16px 20px;
}
.founder-figure .credential .nm { font-family: var(--font-head); font-size: 1.25rem; color:#fff; }
.founder-figure .credential .rl { font-size: .82rem; color: var(--gold-light); letter-spacing: .04em; margin-top: 2px; }
.founder-sign { margin-top: 26px; display: flex; align-items: center; gap: 16px; }
.founder-sign .nm { font-family: var(--font-head); font-size: 1.15rem; color: var(--charcoal); }
.founder-sign .rl { font-size: .85rem; color: var(--emerald); font-weight: 600; }

/* -------------------------------------------------------------------- Map */
.map-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--border); line-height: 0; }
.map-embed iframe { display: block; width: 100%; filter: grayscale(.15); }

/* ------------------------------------------------------------------ Values */
.value-list { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.value-item { display: flex; align-items: center; gap: 14px; padding: 20px 24px; background: #fff; border: 1px solid var(--border); border-radius: 12px; font-weight: 600; font-family: var(--font-head); font-size: 1.15rem; }
.value-item .n { font-size: .9rem; color: var(--gold); font-family: var(--font-body); }

/* ------------------------------------------------------------------- Prose */
.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 60px; align-items: start; }
.prose { font-size: 1.12rem; line-height: 1.8; color: #2a332f; max-width: 720px; }
.prose > * + * { margin-top: 1.4em; }
.prose h2 { font-size: 1.75rem; margin-top: 2em; }
.prose h3 { font-size: 1.35rem; margin-top: 1.6em; }
.prose p { color: #333d38; }
.prose a { text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--gold); }
.prose ul, .prose ol { padding-left: 1.4em; display: grid; gap: .5em; }
.prose ul li { list-style: disc; color: #333d38; }
.prose ol li { list-style: decimal; color: #333d38; }
.prose blockquote {
    border-left: 3px solid var(--gold); padding: 8px 0 8px 26px; margin-left: 0;
    font-family: var(--font-head); font-style: italic; font-size: 1.3rem; color: var(--emerald-dark);
}
.prose strong { color: var(--charcoal); }
.prose code { background: var(--gray-light); padding: 2px 7px; border-radius: 5px; font-size: .9em; }

.post-hero-img { border-radius: var(--radius); box-shadow: var(--shadow-md); margin-bottom: 40px; width: 100%; aspect-ratio: 21/9; object-fit: cover; }

.sidebar { position: sticky; top: 100px; display: grid; gap: 28px; }
.widget { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; }
.widget h4 { font-size: 1.1rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--border); }
.widget ul { display: grid; gap: 10px; }
.widget ul a { color: var(--text); font-size: .95rem; display: flex; justify-content: space-between; gap: 8px; }
.widget ul a:hover { color: var(--emerald); }
.widget .count { color: var(--text-soft); font-size: .85rem; }
.widget-cta { background: var(--emerald-dark); color:#fff; }
.widget-cta h4 { color:#fff; border-color: rgba(255,255,255,.2); }
.widget-cta p { color: rgba(255,255,255,.8); font-size: .95rem; margin-bottom: 18px; }

.post-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; padding-top: 28px; border-top: 1px solid var(--border); }
.post-share { display: flex; align-items: center; gap: 12px; margin-top: 24px; }
.post-share a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; color: var(--emerald); }
.post-share a:hover { background: var(--emerald); color:#fff; border-color: var(--emerald); }

/* Author box */
.author-box { display: flex; gap: 22px; align-items: center; background: var(--gray-light); border-radius: var(--radius); padding: 28px; margin-top: 44px; }
.author-box img { width: 84px; height: 84px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.author-box h4 { margin-bottom: 4px; }
.author-box .role { color: var(--emerald); font-size: .85rem; font-weight: 600; margin-bottom: 8px; }
.author-box p { font-size: .95rem; }

/* -------------------------------------------------------------- Insights toolbar */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; align-items: center; justify-content: space-between; }
.cat-pills { display: flex; flex-wrap: wrap; gap: 8px; }
.cat-pill { padding: 9px 18px; border-radius: 100px; border: 1px solid var(--border); background:#fff; font-size: .88rem; font-weight: 500; color: var(--text-muted); }
.cat-pill:hover, .cat-pill.is-active { background: var(--emerald); color:#fff; border-color: var(--emerald); }
.search-form { display: flex; gap: 8px; }
.search-form input { padding: 10px 16px; border: 1px solid var(--border); border-radius: 100px; font-family: inherit; font-size: .9rem; min-width: 200px; background:#fff; }
.search-form input:focus { outline: 2px solid var(--emerald-light); outline-offset: 1px; }

/* ------------------------------------------------------------------- Forms */
.form-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius); padding: clamp(30px,4vw,48px); box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 8px; color: var(--charcoal); }
.field input, .field textarea, .field select {
    width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px;
    font-family: inherit; font-size: 1rem; background: var(--off-white); color: var(--text); transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(15,93,70,.1); background:#fff; }
.field textarea { resize: vertical; min-height: 150px; }
.field .hint { font-size: .82rem; color: var(--text-soft); margin-top: 6px; }

.alert { padding: 16px 20px; border-radius: 10px; margin-bottom: 24px; font-size: .95rem; }
.alert-success { background: rgba(15,93,70,.08); color: var(--emerald-dark); border: 1px solid rgba(15,93,70,.2); }
.alert-error { background: #fdecea; color: #a3271b; border: 1px solid #f5c6c0; }

.contact-split { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: start; }
.contact-info .info-item { display: flex; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--border); }
.contact-info .info-item:last-child { border-bottom: 0; }
.contact-info .ico { width: 46px; height: 46px; border-radius: 12px; background: rgba(15,93,70,.08); display: grid; place-items: center; color: var(--emerald); flex-shrink: 0; }
.contact-info .info-item .lbl { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--text-soft); }
.contact-info .info-item strong, .contact-info .info-item a { display:block; font-size: 1.05rem; color: var(--charcoal); font-family: var(--font-head); }
.contact-info .info-item a:hover { color: var(--emerald); }

/* Newsletter */
.newsletter-inline { display: flex; gap: 12px; max-width: 460px; }
.newsletter-inline input { flex: 1; padding: 14px 18px; border-radius: 100px; border: 1px solid var(--border); background:#fff; font-family: inherit; }
.bg-emerald .newsletter-inline input { border-color: rgba(255,255,255,.25); background: rgba(255,255,255,.1); color:#fff; }
.bg-emerald .newsletter-inline input::placeholder { color: rgba(255,255,255,.6); }

/* -------------------------------------------------------------- Publications */
.pub-item { display: flex; gap: 24px; padding: 28px; background:#fff; border:1px solid var(--border); border-radius: var(--radius); transition: all .3s var(--ease); align-items: flex-start; }
.pub-item:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); border-color: transparent; }
.pub-type { flex-shrink: 0; width: 64px; height: 78px; border-radius: 8px; background: linear-gradient(160deg, var(--emerald), var(--emerald-dark)); display: grid; place-items: center; color: var(--gold-light); position: relative; }
.pub-type svg { width: 28px; height: 28px; }
.pub-item .meta { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); font-weight: 700; margin-bottom: 6px; }
.pub-item h3 { font-size: 1.25rem; margin-bottom: 8px; }
.pub-item p { font-size: .95rem; margin-bottom: 12px; }

/* Resources */
.resource-card { background:#fff; border:1px solid var(--border); border-radius: var(--radius); padding: 28px; transition: all .3s var(--ease); }
.resource-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: transparent; }
.resource-card .r-cat { font-size: .74rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; color: var(--emerald); background: rgba(15,93,70,.07); padding: 5px 12px; border-radius: 100px; display: inline-block; margin-bottom: 16px; }
.resource-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.resource-card p { font-size: .94rem; margin-bottom: 16px; }

/* --------------------------------------------------------------- Footer */
.site-footer { background: var(--emerald-dark); color: rgba(255,255,255,.72); padding: 72px 0 32px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 44px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.footer-logo img { border-radius: 10px; }
.footer-name { display: block; font-family: var(--font-head); font-size: 1.3rem; color:#fff; font-weight: 600; letter-spacing: .04em; }
.footer-tag { display: block; font-size: .8rem; color: var(--gold-light); letter-spacing: .05em; }
.footer-blurb { font-size: .92rem; color: rgba(255,255,255,.75); }
.footer-blurb.muted { color: rgba(255,255,255,.55); margin-top: 8px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; font-weight: 600; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.72); font-size: .94rem; }
.footer-col a:hover { color: var(--gold-light); }
.footer-contact li { margin-bottom: 14px; }
.footer-contact .lbl { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: 2px; }
.footer-contact a { color: #fff; }
.footer-contact .btn { margin-top: 6px; }
.footer-disclaimer { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-disclaimer p { font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.7; max-width: 900px; }
.footer-disclaimer strong { color: rgba(255,255,255,.7); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 28px; font-size: .84rem; color: rgba(255,255,255,.5); }

/* -------------------------------------------------------- Subscribe modal */
.sub-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 20px; }
.sub-modal.open { display: flex; }
.sub-overlay { position: absolute; inset: 0; background: rgba(11,47,40,.55); backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); opacity: 0; transition: opacity .3s var(--ease); }
.sub-modal.open .sub-overlay { opacity: 1; }
.sub-card {
    position: relative; z-index: 2; width: 100%; max-width: 460px; background: #fff;
    border-radius: 20px; padding: 40px 36px 34px; text-align: center; box-shadow: var(--shadow-lg);
    transform: translateY(18px) scale(.97); opacity: 0; transition: transform .35s var(--ease), opacity .35s var(--ease);
    border-top: 4px solid var(--gold);
}
.sub-modal.open .sub-card { transform: none; opacity: 1; }
.sub-close { position: absolute; top: 14px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: 0; background: var(--gray-light); color: var(--text-muted); font-size: 22px; line-height: 1; cursor: pointer; transition: all .2s var(--ease); }
.sub-close:hover { background: var(--emerald); color: #fff; }
.sub-emblem { display: inline-grid; place-items: center; margin-bottom: 14px; }
.sub-emblem img { width: 56px; height: 56px; border-radius: 50%; box-shadow: var(--shadow-sm); }
.sub-card h2 { font-size: 1.7rem; line-height: 1.2; margin: 12px 0 10px; }
.sub-card p { font-size: .96rem; margin: 0 auto; max-width: 360px; }
.sub-row { display: flex; gap: 10px; margin-top: 22px; }
.sub-row input { flex: 1; min-width: 0; padding: 13px 16px; border: 1px solid var(--border); border-radius: 100px; font-family: inherit; font-size: .95rem; background: var(--off-white); }
.sub-row input:focus { outline: none; border-color: var(--emerald); box-shadow: 0 0 0 3px rgba(15,93,70,.1); background: #fff; }
.sub-row .btn { flex-shrink: 0; }
.sub-msg { min-height: 0; margin: 14px 0 0 !important; font-size: .9rem; font-weight: 500; }
.sub-msg.ok { color: var(--emerald); }
.sub-msg.err { color: #a3271b; }
.sub-fine { font-size: .78rem !important; color: var(--text-soft); margin-top: 14px !important; }
@media (max-width: 480px) {
    .sub-card { padding: 34px 22px 28px; }
    .sub-row { flex-direction: column; }
    .sub-row .btn { width: 100%; }
}

/* ------------------------------------------------------------ Reveal anim */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ------------------------------------------------------------ Utilities */
.text-center { text-align: center; }
.mt-0{margin-top:0}.mt-2{margin-top:16px}.mt-3{margin-top:24px}.mt-4{margin-top:32px}.mt-5{margin-top:48px}
.mb-0{margin-bottom:0}
.center-btn { display: flex; justify-content: center; margin-top: 48px; }
.divider-gold { width: 60px; height: 3px; background: var(--gold); border-radius: 3px; margin: 0 0 24px; }
.center .divider-gold { margin-inline: auto; }

/* --------------------------------------------------------------- Responsive */
@media (max-width: 980px) {
    .primary-nav, .header-actions { display: none; }
    .nav-toggle { display: flex; }
    .hero-inner { grid-template-columns: 1fr; gap: 40px; }
    .hero-figure { max-width: 420px; margin-inline: auto; }
    .split, .contact-split, .article-layout, .article-feature, .founder { grid-template-columns: 1fr; gap: 40px; }
    .founder-figure { max-width: 460px; margin-inline: auto; order: -1; }
    .article-feature .article-thumb { min-height: 260px; }
    .sidebar { position: static; }
    .sidebar .widget-cta { display: none; }
    .grid-4 { grid-template-columns: repeat(2,1fr); }
    .stats { grid-template-columns: repeat(2,1fr); gap: 36px; }
    .value-list { grid-template-columns: repeat(2,1fr); }
    .split-figure .frame, .founder-figure .frame { inset: -10px 10px 10px -10px; }
}
@media (max-width: 680px) {
    body { font-size: 16px; }
    h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
    .header-inner { height: 64px; }
    .brand-logo { height: 38px; }
    .mobile-nav { inset-block-start: 64px; }
    .section { padding: 56px 0; }
    .container { padding-inline: 18px; }
    .grid-2, .grid-3, .grid-4, .value-list { grid-template-columns: 1fr; }
    .form-row, .row2, .row3 { grid-template-columns: 1fr; }
    .hero-badge { position: static; margin-top: 18px; max-width: none; }
    .hero-figure::before { display: none; }
    .filter-bar { flex-direction: column; align-items: stretch; }
    .cat-pills { overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; padding-bottom: 6px; }
    .cat-pill { white-space: nowrap; }
    .search-form { width: 100%; }
    .search-form input { min-width: 0; flex: 1; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .footer-bottom { flex-direction: column; gap: 6px; }
    .cta-band { padding: 40px 22px; border-radius: 16px; }
    .cta-contact { gap: 22px; flex-direction: column; }
    .cta-actions { flex-direction: column; }
    .cta-actions .btn { width: 100%; }
    .pub-item { flex-direction: column; gap: 16px; }
    .author-box { flex-direction: column; text-align: center; }
    .author-box img { margin-inline: auto; }
    .post-hero-img { aspect-ratio: 16/10; }
    .prose { font-size: 1.05rem; }
    .prose blockquote { font-size: 1.15rem; padding-left: 18px; }
    .newsletter-inline { flex-direction: column; }
    .cta-band h2, .page-hero h1 { overflow-wrap: break-word; }
}
@media (max-width: 400px) {
    .brand-logo { height: 34px; }
    .value-list { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
    * { scroll-behavior: auto !important; }
    .reveal { opacity: 1 !important; transform: none !important; }
}
