:root {
  --ink: #111113;
  --muted: #606067;
  --paper: #fff;
  --wash: #f5f5f7;
  --line: #d9d9df;
  --accent: #33473b;
  --radius: 28px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif; font-size: 17px; line-height: 1.55; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration-thickness: .08em; text-underline-offset: .2em; }
.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 1000; padding: .75rem 1rem; background: #fff; border-radius: .5rem; }
.skip-link:focus { top: 1rem; }

.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.82); border-bottom: 1px solid rgba(0,0,0,.08); backdrop-filter: saturate(180%) blur(18px); }
.site-header__inner { max-width: var(--max); min-height: 58px; margin: 0 auto; padding: 0 24px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.site-brand { display: flex; align-items: center; flex: 0 0 auto; }
.site-brand img, .custom-logo { width: auto; max-width: 172px; max-height: 36px; object-fit: contain; }
.custom-logo-link { display: flex; }
.site-nav__list { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); margin: 0; padding: 0; list-style: none; }
.site-nav a { font-size: 13px; text-decoration: none; color: #29292c; }
.site-nav a:hover, .site-nav .current-menu-item > a { color: #000; }
.nav-toggle { display: none; border: 0; background: none; font: inherit; }

.home-content > * { margin-top: 0; margin-bottom: 0; }
.jrk-hero { min-height: min(820px, calc(100vh - 58px)); display: grid; grid-template-columns: 1.05fr .95fr; background: var(--wash); overflow: hidden; }
.jrk-hero__copy { align-self: center; padding: clamp(70px, 9vw, 150px) clamp(28px, 7vw, 110px); }
.jrk-hero__copy h1 { max-width: 780px; margin: 0 0 24px; font-size: clamp(50px, 7vw, 106px); line-height: .94; letter-spacing: -.065em; font-weight: 650; }
.jrk-hero__copy p:not(.eyebrow) { max-width: 650px; margin: 0 0 32px; font-size: clamp(20px, 2vw, 29px); line-height: 1.25; color: #343439; letter-spacing: -.025em; }
.jrk-hero__media { min-height: 620px; background: #172634; }
.jrk-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 23%; }
.eyebrow { margin: 0 0 12px; color: var(--muted); font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.button, .wp-element-button { display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 12px 22px; color: #fff; background: var(--ink); border: 1px solid var(--ink); border-radius: 999px; font-weight: 650; text-decoration: none; transition: transform .2s ease, background .2s ease; }
.button:hover, .wp-element-button:hover { transform: translateY(-1px); background: var(--accent); }
.button--ghost { color: var(--ink); background: transparent; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.jrk-statement { padding: clamp(80px, 12vw, 180px) 24px; text-align: center; }
.jrk-statement h2 { max-width: 1030px; margin: 0 auto; font-size: clamp(42px, 6vw, 86px); line-height: 1.02; letter-spacing: -.055em; }
.jrk-pillars { max-width: var(--max); margin: 0 auto; padding: 0 24px clamp(90px, 11vw, 160px); display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.jrk-pillar { min-height: 330px; padding: clamp(28px, 4vw, 50px); background: var(--wash); border-radius: var(--radius); }
.jrk-pillar h3 { margin: 0 0 14px; font-size: clamp(30px, 3vw, 46px); line-height: 1.05; letter-spacing: -.04em; }
.jrk-pillar p { color: var(--muted); }

.content-rail, .archive-shell, .page-shell, .article-shell { max-width: var(--max); margin: 0 auto; padding: clamp(80px, 10vw, 140px) 24px; }
.section-heading { display: grid; grid-template-columns: 1fr auto; align-items: end; margin-bottom: 34px; }
.section-heading .eyebrow { grid-column: 1 / -1; }
.section-heading h2, .archive-intro h1, .page-intro h1, .article-header h1 { margin: 0; font-size: clamp(46px, 7vw, 92px); line-height: .98; letter-spacing: -.055em; }
.section-heading > a { margin-bottom: 8px; color: var(--accent); font-weight: 650; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card-grid--archive { margin-top: 54px; }
.content-card { min-width: 0; overflow: hidden; background: var(--wash); border-radius: 22px; }
.content-card__link { height: 100%; display: flex; flex-direction: column; text-decoration: none; }
.content-card__image { aspect-ratio: 16/10; overflow: hidden; }
.content-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.content-card__link:hover .content-card__image img { transform: scale(1.025); }
.content-card__body { flex: 1; display: flex; flex-direction: column; padding: 28px; }
.content-card h2 { margin: 0 0 14px; font-size: 27px; line-height: 1.08; letter-spacing: -.035em; }
.content-card p:not(.eyebrow) { color: var(--muted); }
.content-card__cta { margin-top: auto; padding-top: 20px; color: var(--accent); font-weight: 650; }
.empty-state { padding: 34px; background: var(--wash); border-radius: var(--radius); }
.empty-state--large { min-height: 430px; display: flex; flex-direction: column; justify-content: flex-end; }
.empty-state--large h1, .empty-state--large h2 { max-width: 820px; margin: 0 0 18px; font-size: clamp(40px, 6vw, 78px); line-height: 1; letter-spacing: -.05em; }
.empty-state--large p:not(.eyebrow) { max-width: 680px; color: var(--muted); }

.archive-intro, .page-intro, .article-header { max-width: 960px; }
.archive-description { max-width: 700px; margin-top: 28px; color: var(--muted); font-size: 22px; }
.page-portrait, .article-image { margin: 55px 0; border-radius: var(--radius); overflow: hidden; }
.page-portrait img { width: 100%; max-height: 850px; object-fit: cover; object-position: center 25%; }
.entry-content { max-width: 820px; margin-top: 60px; font-size: 20px; }
.entry-content > * { margin-top: 0; margin-bottom: 1.4em; }
.entry-content h2 { margin-top: 1.8em; font-size: clamp(34px, 4vw, 54px); line-height: 1.08; letter-spacing: -.04em; }
.entry-content h3 { margin-top: 1.6em; font-size: 28px; letter-spacing: -.025em; }
.entry-content a { color: var(--accent); }
.article-header { margin-bottom: 50px; }
.article-meta { color: var(--muted); }

.jrk-contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.jrk-contact-form p { margin: 0; }
.jrk-contact-form p:last-of-type, .jrk-contact-form .form-status { grid-column: 1 / -1; }
.jrk-contact-form label { display: block; margin-bottom: 7px; font-size: 14px; font-weight: 650; }
.jrk-contact-form input, .jrk-contact-form textarea { width: 100%; padding: 14px 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; font: inherit; }
.jrk-contact-form input:focus, .jrk-contact-form textarea:focus { outline: 2px solid var(--accent); outline-offset: 2px; }
.jrk-contact-form .jrk-hp { position: absolute; left: -9999px; }
.form-status { padding: 14px 16px; border-radius: 12px; background: #eaf4ed; }

.site-footer { background: var(--wash); }
.site-footer__inner { max-width: var(--max); margin: 0 auto; padding: 60px 24px 34px; display: grid; grid-template-columns: 1fr auto; gap: 40px; color: var(--muted); font-size: 14px; }
.site-footer__brand { margin: 0 0 6px; color: var(--ink); font-size: 18px; font-weight: 700; }
.site-footer__inner p { margin-top: 0; }
.site-footer__links { display: flex; gap: 24px; }
.site-footer__legal { grid-column: 1 / -1; padding-top: 26px; border-top: 1px solid var(--line); }

@media (max-width: 900px) {
  .site-header__inner { min-height: 54px; }
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 54px; padding: 18px 24px 28px; background: rgba(255,255,255,.98); border-bottom: 1px solid var(--line); }
  .site-nav.is-open { display: block; }
  .site-nav__list { align-items: flex-start; flex-direction: column; gap: 18px; }
  .site-nav a { font-size: 18px; }
  .jrk-hero { min-height: 0; grid-template-columns: 1fr; }
  .jrk-hero__media { min-height: 520px; order: -1; }
  .jrk-pillars, .card-grid { grid-template-columns: 1fr; }
  .jrk-pillar { min-height: 240px; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .jrk-hero__copy { padding: 55px 24px 70px; }
  .jrk-hero__media { min-height: 440px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .section-heading > a { margin: 0; }
  .jrk-contact-form { grid-template-columns: 1fr; }
  .jrk-contact-form p { grid-column: 1; }
  .site-footer__inner { grid-template-columns: 1fr; }
  .site-footer__legal { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

