:root {
  color-scheme: light;
  --bg: #f4f7f6;
  --surface: #ffffff;
  --surface-soft: #f8faf9;
  --ink: #10201d;
  --muted: #667085;
  --line: #d9e3e2;
  --brand: #0f766e;
  --brand-2: #2563eb;
  --accent: #f59e0b;
  --brand-dark: #123c38;
  --danger: #d92d20;
  --success: #079455;
  --shadow: 0 18px 46px rgba(15, 35, 32, 0.1);
  --radius: 6px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.7;
  letter-spacing: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.loading-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: var(--bg);
}

.spinner {
  width: 38px;
  height: 38px;
  border: 3px solid #d3dedc;
  border-top-color: var(--brand);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid rgba(217, 227, 226, 0.9);
  backdrop-filter: blur(14px);
  transition: box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-solid,
.site-header.inner {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 12px 34px rgba(17, 30, 28, 0.08);
}

.nav-wrap {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 210px;
}

.brand img {
  width: 210px;
  max-height: 52px;
  object-fit: contain;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  color: #33413e;
  transition: background 0.18s ease, color 0.18s ease;
}

.nav a:hover,
.nav a.active {
  background: #e7f5f2;
  color: var(--brand);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-button span,
.menu-button span::before,
.menu-button span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  margin: 0 auto;
  content: "";
}

.menu-button span::before {
  transform: translateY(-7px);
}

.menu-button span::after {
  transform: translateY(5px);
}

.hero {
  min-height: 590px;
  display: grid;
  align-items: center;
  padding: 96px 0 54px;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(244, 247, 246, 0.96) 0%, rgba(244, 247, 246, 0.9) 38%, rgba(244, 247, 246, 0.34) 100%);
}

.hero-content {
  width: min(760px, 100%);
  padding-top: 22px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand);
  font-weight: 850;
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

.hero h1,
.page-hero h1 {
  margin: 0;
  font-size: 46px;
  line-height: 1.16;
  font-weight: 850;
  max-width: 820px;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 24px;
  color: #42514e;
  font-size: 17px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 30px;
}

.hero-points span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #1f4e49;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 10px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 12px 24px rgba(15, 118, 110, 0.22);
}

.btn.secondary {
  background: #fff;
  color: var(--brand-dark);
  border-color: rgba(15, 118, 110, 0.24);
}

.btn.light {
  background: #fff;
  color: var(--brand-dark);
  border-color: var(--line);
}

.btn.ghost {
  background: #fff;
  color: var(--brand);
  border-color: #b9dbd7;
}

.btn.danger {
  background: #fff2f0;
  color: var(--danger);
  border-color: #ffd3cc;
}

.signal-bar {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.signal-card {
  min-height: 142px;
  padding: 24px 22px;
  border-right: 1px solid var(--line);
}

.signal-card:first-child {
  border-left: 1px solid var(--line);
}

.signal-card span {
  color: var(--accent);
  font-weight: 850;
  font-size: 13px;
}

.signal-card strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 18px;
}

.signal-card p {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 78px 0;
  background: #fff;
}

.section.alt {
  background: var(--bg);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-kicker {
  color: var(--brand);
  font-weight: 850;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}

.section h2,
.section-head h2 {
  margin: 0;
  font-size: 29px;
  line-height: 1.28;
}

.section-desc {
  color: var(--muted);
  max-width: 680px;
  margin: 12px 0 0;
}

.intro-grid,
.choice-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.visual-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--surface-soft);
}

.visual-frame img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  object-fit: cover;
}

.image-stack {
  position: relative;
}

.image-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(217, 227, 226, 0.9);
  border-radius: var(--radius);
  color: var(--brand-dark);
  font-weight: 800;
}

.copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.28;
}

.copy p {
  color: var(--muted);
  margin: 0 0 14px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.feature-chip {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--brand);
  border-radius: var(--radius);
  padding: 12px 14px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.article-card,
.contact-card,
.stat-card,
.news-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.service-card {
  padding: 22px;
  display: grid;
  align-content: start;
  min-height: 238px;
}

.service-card:hover,
.article-card:hover,
.news-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: #a9d7d1;
}

.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: #e7f5f2;
  margin-bottom: 18px;
}

.service-icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.service-card h3,
.article-card h3,
.news-item h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.4;
}

.service-card p,
.article-card p,
.news-item p {
  color: var(--muted);
  margin: 10px 0 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.article-card {
  overflow: hidden;
}

.article-card img {
  width: 100%;
  aspect-ratio: 1.62 / 1;
  object-fit: cover;
  background: #e8efee;
}

.article-body {
  padding: 18px;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 10px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 2px 8px;
  border-radius: 999px;
  background: #e7f5f2;
  color: var(--brand);
  font-size: 12px;
  font-weight: 850;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 22px;
}

.stat-value {
  font-size: 34px;
  font-weight: 850;
  color: var(--brand);
  line-height: 1;
}

.stat-label {
  color: var(--muted);
  margin-top: 8px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.partner {
  min-height: 82px;
  display: grid;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
}

.partner img {
  max-height: 54px;
  object-fit: contain;
}

.page-hero {
  min-height: 310px;
  display: grid;
  align-items: end;
  padding: 124px 0 54px;
  color: var(--ink);
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(244, 247, 246, 0.96), rgba(244, 247, 246, 0.78), rgba(244, 247, 246, 0.42));
}

.page-hero .section-kicker {
  color: var(--brand);
}

.breadcrumbs {
  color: var(--muted);
  margin-top: 10px;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

#categorySearch {
  display: flex;
  align-items: center;
  gap: 12px;
}

#categorySearch .search-input {
  width: 280px;
}

.search-input,
.field input,
.field select,
.field textarea,
.admin-toolbar input,
.admin-toolbar select {
  width: 100%;
  min-height: 42px;
  border: 1px solid #d3dfdd;
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
  outline: none;
}

.search-input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus,
.admin-toolbar input:focus,
.admin-toolbar select:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 34px;
}

.article-main,
.side-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-main {
  padding: 34px;
}

.article-main h1 {
  margin: 0 0 12px;
  font-size: 34px;
  line-height: 1.28;
}

.content-html {
  color: #303d3b;
  word-break: break-word;
}

.content-html p {
  margin: 0 0 16px;
}

.content-html img {
  height: auto;
  border-radius: var(--radius);
  margin: 20px auto;
}

.side-panel {
  padding: 22px;
  align-self: start;
  position: sticky;
  top: 96px;
}

.side-panel h3 {
  margin: 0 0 14px;
}

.side-list {
  display: grid;
  gap: 12px;
}

.side-list a {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.contact-card {
  padding: 24px;
  border-top: 4px solid var(--brand);
}

.contact-card strong {
  display: block;
  margin-bottom: 8px;
}

.site-footer {
  background: #fff;
  color: var(--muted);
  border-top: 1px solid var(--line);
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}

.footer-grid h3 {
  color: var(--ink);
  margin: 0 0 12px;
}

.footer-logo {
  width: 210px;
  max-height: 56px;
  object-fit: contain;
  margin-bottom: 14px;
}

.empty {
  min-height: 220px;
  display: grid;
  place-items: center;
  border: 1px dashed #c9d8d6;
  border-radius: var(--radius);
  color: var(--muted);
  background: #fff;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.pagination button {
  min-width: 38px;
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.pagination button.active {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
}

.admin-body {
  background: #eef6f4;
}

.login-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background: radial-gradient(circle at top left, rgba(15, 118, 110, 0.18), transparent 30%), #eef6f4;
}

.login-box {
  width: min(420px, 100%);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 32px;
}

.login-box h1 {
  margin: 0 0 8px;
  font-size: 26px;
}

.login-box p {
  margin: 0 0 24px;
  color: var(--muted);
}

.field {
  display: grid;
  gap: 7px;
  margin-bottom: 16px;
}

.field label {
  font-weight: 700;
  color: #344845;
}

.admin-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 238px minmax(0, 1fr);
}

.admin-sidebar {
  background: #123c38;
  color: #fff;
  padding: 24px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.admin-logo {
  display: flex;
  align-items: center;
  min-height: 54px;
  margin-bottom: 26px;
}

.admin-logo img {
  max-width: 184px;
  max-height: 50px;
  object-fit: contain;
}

.admin-nav {
  display: grid;
  gap: 8px;
}

.admin-nav button {
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  padding: 12px 14px;
  cursor: pointer;
}

.admin-nav button.active,
.admin-nav button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.admin-main {
  padding: 28px;
}

.admin-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.admin-topbar h1 {
  margin: 0;
  font-size: 26px;
}

.admin-topbar p {
  margin: 2px 0 0;
  color: var(--muted);
}

.admin-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
}

.admin-toolbar {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) 180px 140px auto;
  gap: 12px;
  margin-bottom: 16px;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 13px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: middle;
}

th {
  color: #45615d;
  font-size: 13px;
  background: #f7fbfa;
}

td {
  color: #263936;
}

.thumb {
  width: 72px;
  height: 48px;
  border-radius: 6px;
  object-fit: cover;
  background: #eef2f7;
}

.row-actions {
  display: flex;
  gap: 8px;
}

.icon-btn {
  min-width: 34px;
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  cursor: pointer;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(8, 18, 34, 0.55);
}

.modal {
  width: min(980px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.28);
}

.modal-head,
.modal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
}

.modal-foot {
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.modal-head h2 {
  margin: 0;
  font-size: 20px;
}

.modal-body {
  padding: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field.full {
  grid-column: 1 / -1;
}

.field textarea {
  min-height: 160px;
  resize: vertical;
}

.field textarea.content-editor {
  min-height: 300px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  line-height: 1.6;
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.media-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}

.media-item img {
  width: 100%;
  aspect-ratio: 1.25 / 1;
  object-fit: cover;
  background: #eef2f7;
}

.media-item div {
  padding: 10px;
  color: var(--muted);
  font-size: 13px;
  word-break: break-all;
}

.settings-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 200;
  min-width: 220px;
  max-width: 360px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #123c38;
  color: #fff;
  box-shadow: var(--shadow);
}

.toast.error {
  background: var(--danger);
}

.toast.success {
  background: var(--success);
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 24px 20px;
    background: rgba(9, 22, 42, 0.98);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 12px 0;
  }

  .menu-button {
    display: inline-grid;
    place-items: center;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
  }

  .intro-grid,
  .choice-grid,
  .contact-grid,
  .article-shell,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-layout {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    position: static;
    height: auto;
  }

  .admin-toolbar,
  .settings-grid {
    grid-template-columns: 1fr;
  }

  .media-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 178px;
  }

  .hero {
    min-height: 640px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 31px;
  }

  .section {
    padding: 62px 0;
  }

  .section-head,
  .toolbar,
  .admin-topbar {
    align-items: stretch;
    flex-direction: column;
  }

  #categorySearch {
    align-items: stretch;
    flex-direction: column;
  }

  #categorySearch .search-input {
    width: 100%;
  }

  .service-grid,
  .card-grid,
  .feature-list,
  .stats-grid,
  .partner-grid,
  .form-grid,
  .media-grid {
    grid-template-columns: 1fr;
  }

  .article-main {
    padding: 22px;
  }

  .admin-main {
    padding: 18px;
  }
}

/* JLH public-site layout: distinct from the companion site. */
.section-kicker {
  letter-spacing: 0;
}

.brand span {
  display: none;
}

.nav-contact {
  display: none;
}

.jlh-hero {
  min-height: 680px;
  display: grid;
  align-items: center;
  padding: 96px 0 70px;
  background: #f5f7fb;
  overflow: hidden;
}

.jlh-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.jlh-hero-copy h1 {
  max-width: 760px;
  margin: 0;
  font-size: 48px;
  line-height: 1.12;
  font-weight: 900;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jlh-hero-copy h1 span {
  display: block;
}

.jlh-hero-copy p:not(.section-kicker) {
  max-width: 690px;
  margin: 22px 0 0;
  color: #475467;
  font-size: 17px;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.jlh-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.jlh-hero-panel {
  position: relative;
  min-height: 520px;
}

.jlh-hero-panel > img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #d6dde8;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
}

.jlh-quick {
  background: #111827;
  color: #fff;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.quick-grid .signal-card {
  min-height: 156px;
  border-color: rgba(255, 255, 255, 0.14);
  background: transparent;
}

.quick-grid .signal-card:first-child {
  border-left-color: rgba(255, 255, 255, 0.14);
}

.quick-grid .signal-card p {
  color: rgba(255, 255, 255, 0.68);
}

.profile-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.profile-media img {
  width: 100%;
  aspect-ratio: 0.9 / 1;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}

.profile-copy {
  padding: 20px 0;
}

.profile-copy h2 {
  margin: 0 0 18px;
  font-size: 34px;
  line-height: 1.24;
}

.profile-copy p {
  margin: 0;
  color: var(--muted);
}

.profile-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.profile-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid #ccd6e0;
  border-radius: 4px;
  background: #fff;
  font-weight: 800;
}

.solution-board {
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: 42px;
  align-items: start;
}

.board-title {
  position: sticky;
  top: 30px;
}

.board-title h2,
.product-heading h2,
.news-layout h2,
.partner-layout h2,
.contact-band-grid h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.2;
}

.board-title p:not(.section-kicker),
.product-heading p {
  color: var(--muted);
}

.solution-lanes {
  display: grid;
  gap: 12px;
}

.lane-card {
  display: grid;
  grid-template-columns: 62px 58px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.lane-index {
  color: #98a2b3;
  font-weight: 900;
  font-size: 28px;
  line-height: 1;
}

.lane-card h3 {
  margin: 0;
  font-size: 18px;
}

.lane-card p {
  margin: 8px 0 0;
  color: var(--muted);
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.65fr) minmax(320px, 1.05fr) minmax(260px, 0.86fr);
  gap: 24px;
  align-items: stretch;
}

.product-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 16px;
}

.featured-product {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.featured-product img {
  width: 100%;
  aspect-ratio: 1.34 / 1;
  object-fit: cover;
}

.featured-product div {
  padding: 22px;
}

.featured-product h3 {
  margin: 12px 0 10px;
  font-size: 22px;
  line-height: 1.35;
}

.featured-product p {
  margin: 0;
  color: var(--muted);
}

.product-stack {
  display: grid;
  gap: 12px;
}

.compact-article {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.compact-article img {
  width: 104px;
  height: 78px;
  object-fit: cover;
  border-radius: 6px;
}

.compact-article span {
  color: var(--muted);
  font-size: 13px;
}

.compact-article h3 {
  margin: 6px 0 0;
  font-size: 15px;
  line-height: 1.45;
}

.news-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
}

.timeline-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item time {
  color: var(--brand);
  font-weight: 900;
}

.timeline-item h3 {
  margin: 0;
  font-size: 20px;
}

.timeline-item p {
  margin: 10px 0 0;
  color: var(--muted);
}

.partner-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.jlh-contact-band {
  padding: 66px 0;
  background: #111827;
  color: #fff;
}

.contact-band-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 32px;
  align-items: center;
}

.jlh-contact-band .section-kicker {
  color: #93c5fd;
}

.jlh-contact-band .contact-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  border-top-color: #60a5fa;
}

.jlh-contact-band .contact-card span {
  color: rgba(255, 255, 255, 0.74);
}

@media (min-width: 981px) {
  .site-header {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: 236px;
    color: #fff;
    background: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 0;
    box-shadow: none;
  }

  .site-header.is-solid,
  .site-header.inner {
    background: #0f172a;
    box-shadow: none;
  }

  .container.nav-wrap {
    width: auto;
    height: 100%;
    margin: 0;
  }

  .nav-wrap {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 28px 18px;
    gap: 26px;
  }

  .brand {
    min-width: 0;
    display: grid;
    gap: 12px;
    color: #fff;
  }

  .brand img {
    width: 190px;
    max-height: 56px;
    padding: 8px;
    border-radius: 6px;
    background: #fff;
  }

  .brand span {
    display: block;
    color: rgba(255, 255, 255, 0.72);
    font-weight: 800;
  }

  .nav {
    display: grid;
    align-items: stretch;
    gap: 6px;
  }

  .nav a {
    justify-content: flex-start;
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.74);
    padding: 0 12px;
  }

  .nav a:hover,
  .nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
  }

  .nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    margin-top: auto;
    border-radius: 6px;
    background: #fff;
    color: #0f172a;
    font-weight: 900;
  }

  main,
  .site-footer {
    margin-left: 236px;
  }

  .page-hero {
    margin-left: 0;
  }
}

@media (max-width: 1100px) {
  .jlh-hero-grid,
  .profile-layout,
  .solution-board,
  .product-layout,
  .news-layout,
  .partner-layout,
  .contact-band-grid {
    grid-template-columns: 1fr;
  }

  .board-title {
    position: static;
  }

  .product-heading {
    padding-right: 0;
  }
}

@media (max-width: 980px) {
  .brand span,
  .nav-contact {
    display: none;
  }

  .nav {
    background: rgba(15, 23, 42, 0.98);
  }

  .nav a {
    color: rgba(255, 255, 255, 0.84);
  }

  .jlh-hero {
    padding-top: 118px;
  }

  .quick-grid,
  .partner-strip {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .jlh-hero {
    min-height: auto;
    padding: 112px 0 56px;
  }

  .jlh-hero-copy h1 {
    font-size: 29px;
    line-height: 1.22;
  }

  .jlh-hero-panel {
    min-height: auto;
  }

  .jlh-hero-panel > img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 0.82;
  }

  .lane-card,
  .timeline-item,
  .compact-article {
    grid-template-columns: 1fr;
  }

  .compact-article img {
    width: 100%;
    height: auto;
    aspect-ratio: 1.8 / 1;
  }
}
