:root{
  --brand:#2563eb;
  --ink:#0f172a;
  --muted:#6b7280;
  --surface:#f8fafc;
  --radius:14px;
  --shadow:0 8px 24px rgba(0,0,0,.08);
  --section-pad:clamp(56px,8vw,120px);
}
*{box-sizing:border-box}
html,body{width:100%}
body{margin:0;font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;color:var(--ink);background:#fff;line-height:1.6}
a{color:var(--brand);text-decoration:none} a:hover{text-decoration:underline}

/* Containers */
.container, .container-wide{max-width:100vw;width:100%;margin:0 auto;padding:0}
.full-bleed{position:relative;width:100vw;left:50%;right:50%;margin-left:-50vw;margin-right:-50vw}

/* Header */
.cb-header{position:sticky;top:0;z-index:1000;background:#fff;transition:box-shadow .25s ease}
.cb-header.is-scrolled{box-shadow:0 10px 30px rgba(16,24,40,.08)}
.cb-header-inner{max-width:1440px;margin:0 auto;padding:10px 20px;display:flex;align-items:center;justify-content:space-between;gap:16px}
.cb-brand img{height:52px;width:auto;display:block}

/* Nav */
.cb-nav ul{list-style:none;display:flex;gap:14px;margin:0;padding:0;align-items:center;flex-wrap:wrap}
.cb-nav a{display:inline-block;padding:10px 14px;border-radius:999px;font-weight:700;color:var(--ink);transition:transform .15s ease,background .2s ease,box-shadow .2s ease}
.cb-nav a:hover{background:#f3f4f6;transform:translateY(-1px);box-shadow:0 6px 16px rgba(16,24,40,.08)}

/* Burger + drawer */
.cb-burger{display:none;position:relative;width:42px;height:42px;border-radius:10px;border:1px solid #e5e7eb;background:#fff;cursor:pointer;box-shadow:0 4px 12px rgba(0,0,0,.06)}
.cb-burger span{position:absolute;left:10px;right:10px;height:2px;background:#111;transition:.25s ease}
.cb-burger span:nth-child(1){top:12px}.cb-burger span:nth-child(2){top:20px}.cb-burger span:nth-child(3){top:28px}
.cb-burger.is-open span:nth-child(1){top:20px;transform:rotate(45deg)}
.cb-burger.is-open span:nth-child(2){opacity:0}
.cb-burger.is-open span:nth-child(3){top:20px;transform:rotate(-45deg)}
.cb-drawer{position:fixed;inset:64px 0 0 0;background:#fff;opacity:0;visibility:hidden;transform:translateY(-8px) scale(.98);transition:.2s;z-index:999;box-shadow:0 40px 80px rgba(16,24,40,.15);padding:18px 16px}
.cb-drawer.is-open{opacity:1;visibility:visible;transform:translateY(0) scale(1)}
.cb-drawer ul{list-style:none;margin:0;padding:0;display:grid;gap:10px}
.cb-drawer a{display:block;padding:14px 16px;border-radius:12px;font-weight:700;color:var(--ink);background:#f8fafc;border:1px solid #eef2f7}
.cb-drawer a:hover{background:#eef2f7}
.cb-no-scroll{overflow:hidden}

/* Sections */
.section{padding:var(--section-pad) 0}
.card{background:#fff;border-radius:var(--radius);box-shadow:var(--shadow);padding:22px;max-width:1440px;margin:0 auto}

/* Hide only the template page title, not headings in content */
article.page > h1:first-child,
.page .entry-header .entry-title{display:none}

/* Responsive */
@media (max-width:1100px){ .cb-nav{display:none} .cb-burger{display:inline-block} }
