:root {
  --gk-blue: #1b5fa8;
  --gk-navy: #123a66;
  --gk-sky: #4a9fe0;
  --gk-orange: #f08a24;
  --gk-grey: #f3f6fa;
  --gk-white: #ffffff;
  --gk-ink: #1f2730;
  --gk-muted: #5d6a73;
  --gk-radius: 10px;
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #1f2730;
  background-color: #f3f6fa;
  line-height: 1.6;
}
h1, h2, h3, h4, .site-brand, .footer-brand, .section-title, .article-title, .hero-title, .post-card-title {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 700;
  color: #123a66;
}

/* header */
.site-header { background: #123a66; box-shadow: 0 2px 14px rgba(18,58,102,.25); }
.site-nav { padding-top: .55rem; padding-bottom: .55rem; }
.site-brand { color: #ffffff !important; font-size: 1.3rem; font-weight: 800; }
.site-nav .nav-link { color: rgba(255,255,255,.9); font-weight: 500; }
.site-nav .nav-link:hover, .site-nav .nav-link:focus { color: #f08a24; }
.site-nav .dropdown-menu { border: none; border-radius: var(--gk-radius); box-shadow: 0 8px 30px rgba(18,58,102,.2); max-height: 70vh; overflow-y: auto; }
.site-nav .dropdown-item:hover { background: #eaf2fb; color: #1b5fa8; }
.navbar-toggler { border-color: rgba(255,255,255,.4); }
.navbar-toggler-icon { filter: invert(1); }

/* hero */
.hero--home { position: relative; background: linear-gradient(135deg, #1b5fa8, #123a66); color: #fff; padding: 5rem 0; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(74,159,224,.4), transparent 55%); }
.hero-inner { position: relative; z-index: 2; }
.hero-copy { max-width: 760px; }
.hero-title { color: #ffffff; font-size: clamp(1.9rem, 4.5vw, 3rem); line-height: 1.12; margin-bottom: 1rem; }
.hero-sub { font-size: 1.1rem; opacity: .95; }
.eyebrow { color: #f08a24; text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 700; display: block; }

/* sections */
.section { padding: 4rem 0; }
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 2rem; }

/* catalog cards */
.cat-card { display: flex; align-items: center; justify-content: center; text-align: center; min-height: 90px; background: #fff; border: 1px solid #dbe6f2; border-radius: var(--gk-radius); padding: 1rem; color: #123a66; font-weight: 600; text-decoration: none; box-shadow: 0 4px 16px rgba(18,58,102,.06); transition: transform .2s, box-shadow .2s, border-color .2s; }
.cat-card:hover { transform: translateY(-3px); border-color: #f08a24; color: #1b5fa8; box-shadow: 0 8px 22px rgba(27,95,168,.16); }

/* prose */
.site-prose { max-width: 840px; }
.article-title { font-size: clamp(1.7rem, 3.5vw, 2.4rem); margin-bottom: 1.5rem; }
.site-prose img, .site-block--image img, .site-block--gallery img { max-width: 100%; height: auto; border-radius: 8px; }
.site-block--paragraph { margin-bottom: 1.1rem; }
.site-block--image { margin: 1.5rem 0; }
.article-summary { color: #5d6a73; border-left: 4px solid #f08a24; padding-left: 1rem; }

/* content links scoped */
.site-prose a, .site-block--paragraph a, .article-body a, .category-desc a {
  color: #1b5fa8; text-decoration: underline; text-decoration-color: #4a9fe0;
}
.site-prose a:hover, .site-block--paragraph a:hover, .article-body a:hover { color: #f08a24; }

/* cards */
.post-card, .route-card { background: #fff; border: 1px solid #dbe6f2; border-radius: var(--gk-radius); overflow: hidden; box-shadow: 0 4px 16px rgba(18,58,102,.06); transition: transform .3s, box-shadow .3s; }
.post-card:hover, .route-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(27,95,168,.16); }
.post-card-img, .route-card-img { width: 100%; height: 200px; object-fit: cover; }
.post-card-body, .route-card-body { padding: 1.25rem 1.5rem; }
.post-card-title a, .route-card-title a { color: #123a66; text-decoration: none; }
.post-card-title a:hover, .route-card-title a:hover { color: #1b5fa8; }
.route-card-link { color: #1b5fa8; font-weight: 600; text-decoration: none; }
.route-card--minimal { border: none; border-left: 3px solid #f08a24; border-radius: 0; box-shadow: none; }

/* breadcrumbs */
.site-breadcrumbs { background: #eaf2fb; padding: .6rem 0; }
.site-breadcrumbs .breadcrumb { margin: 0; }
.site-breadcrumbs a { color: #1b5fa8; text-decoration: none; }

/* ToC */
.article-toc { background: #eaf2fb; border-radius: var(--gk-radius); padding: 1rem 1.25rem; margin-bottom: 1.5rem; }
.article-toc a { color: #1b5fa8; text-decoration: none; }

/* footer */
.site-footer { background: #123a66; color: rgba(255,255,255,.85); padding: 3.5rem 0 1.5rem; }
.footer-brand { color: #ffffff; font-size: 1.3rem; margin-bottom: .75rem; }
.footer-tagline { color: rgba(255,255,255,.75); }
.footer-col-title { color: #f08a24; text-transform: uppercase; letter-spacing: .08em; font-size: .85rem; margin-bottom: 1rem; }
.footer-links { list-style: none; padding-left: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.82); text-decoration: none; }
.footer-links a:hover { color: #4a9fe0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.15); margin-top: 2.5rem; padding-top: 1.5rem; text-align: center; color: rgba(255,255,255,.65); }
