:root {
  --ink: #111111;
  --paper: #fffdf8;
  --yellow: #f7bd0c;
  --coral: #ff6b4a;
  --aqua: #41d7cf;
  --blue: #2456d6;
  --line: #d9d5cb;
  --muted: #625f58;
  --display: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
button, input { font: inherit; }
.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: #fff;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 16px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
  border-bottom: 1px solid #353535;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1;
}
.brand span { font-size: 11px; font-weight: 700; }
.brand strong { font-family: var(--display); font-size: 28px; font-weight: 900; }
.site-nav { display: flex; align-items: center; gap: 30px; }
.site-nav a { color: #fff; font-size: 14px; font-weight: 700; text-decoration: none; }
.site-nav a:hover, .site-nav a:focus-visible { color: var(--yellow); }
.menu-button {
  display: none;
  border: 1px solid #fff;
  color: #fff;
  background: transparent;
  padding: 8px 12px;
  border-radius: 4px;
}

.hero {
  position: relative;
  min-height: min(720px, 78vh);
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 8vw, 112px) clamp(20px, 7vw, 112px);
  overflow: hidden;
  color: #fff;
  background-color: #171717;
  background-image: url('/assets/images/social-folk-work.jpg');
  background-size: cover;
  background-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .66);
  pointer-events: none;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url('/assets/images/social-folk-pattern.png');
  background-size: 620px auto;
  background-position: 108% 18%;
  background-repeat: no-repeat;
  opacity: .18;
  pointer-events: none;
}
.hero-copy { position: relative; z-index: 1; max-width: 940px; }
.eyebrow {
  margin: 0 0 14px;
  color: inherit;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero h1, .library-hero h1, .article-hero h1 {
  max-width: 1100px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(62px, 10vw, 154px);
  line-height: .88;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}
.hero-copy > p:not(.eyebrow) { max-width: 690px; margin: 28px 0 30px; font-size: clamp(18px, 2vw, 25px); }
.hero-link, .contact a, .article-next a {
  display: inline-block;
  padding: 13px 18px;
  background: var(--yellow);
  color: var(--ink);
  border: 2px solid var(--yellow);
  border-radius: 4px;
  font-weight: 800;
  text-decoration: none;
}
.hero-link:hover, .hero-link:focus-visible, .contact a:hover, .contact a:focus-visible { background: #fff; border-color: #fff; }
.hero-stamp {
  position: absolute;
  z-index: 1;
  right: clamp(18px, 4vw, 60px);
  bottom: 22px;
  margin: 0;
  color: var(--yellow);
  font-family: var(--display);
  font-size: clamp(18px, 2.4vw, 34px);
}

.article-deck {
  padding: clamp(52px, 6vw, 84px) clamp(20px, 5vw, 76px) clamp(62px, 7vw, 96px);
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
}
.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, .35fr) 1fr;
  align-items: end;
  gap: 28px;
  max-width: 1500px;
  margin: 0 auto 34px;
}
.section-heading h2, .intro h2, .services h2, .contact h2, .article-next h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(46px, 6vw, 94px);
  line-height: .94;
  text-transform: uppercase;
  letter-spacing: 0;
}
[data-na-article-library] { max-width: 1500px; margin: 0 auto; }
.article-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 18px; }
.article-tabs button {
  min-height: 44px;
  padding: 8px 15px;
  border: 2px solid var(--ink);
  border-radius: 4px;
  background: transparent;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}
.article-tabs button[aria-selected="true"] { background: var(--ink); color: #fff; }
.article-panel[hidden] { display: none; }
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}
.article-card {
  min-width: 0;
  min-height: 265px;
  display: flex;
  flex-direction: column;
  padding: 22px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  background: #fff;
  text-decoration: none;
}
.article-card:hover, .article-card:focus-visible { background: var(--aqua); }
.article-card span { color: var(--blue); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.article-card strong { margin-top: 22px; font-size: clamp(21px, 2vw, 28px); line-height: 1.08; overflow-wrap: anywhere; }
.article-card small { margin: 14px 0 20px; color: #393939; font-size: 14px; line-height: 1.45; }
.article-card b { margin-top: auto; font-size: 13px; text-decoration: underline; }
[data-na-home-published-list]:empty { display: none; }

.intro {
  display: grid;
  grid-template-columns: minmax(260px, .8fr) minmax(0, 1.2fr);
  align-items: stretch;
  min-height: 660px;
}
.intro-mark { display: grid; place-items: center; padding: 8vw; background: var(--aqua); }
.intro-mark img { width: min(420px, 76%); mix-blend-mode: multiply; }
.intro-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(52px, 8vw, 124px); background: #fff; }
.intro-copy p:not(.eyebrow) { max-width: 770px; font-size: clamp(18px, 2vw, 24px); }

.fact {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(50px, 8vw, 140px);
  padding: clamp(70px, 9vw, 140px) clamp(20px, 7vw, 112px);
  background: var(--coral);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.fact-label { margin: 0 0 18px; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.fact h2 { margin: 0; font-family: var(--display); font-size: clamp(48px, 7vw, 108px); line-height: .93; text-transform: uppercase; }
.fact > div:last-child { align-self: end; font-size: clamp(18px, 2vw, 25px); }
.fact strong { font-size: 1.3em; }

.services {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(50px, 7vw, 110px);
  padding: clamp(72px, 9vw, 140px) clamp(20px, 7vw, 112px);
  background: #121212;
  color: #fff;
}
.services-lead { position: sticky; top: 36px; align-self: start; }
.services-lead > p:last-child { max-width: 540px; color: #d4d4d4; font-size: 20px; }
.service-list { border-top: 1px solid #555; }
.service-list article {
  display: grid;
  grid-template-columns: 50px minmax(160px, .65fr) 1fr;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid #555;
}
.service-list span { color: var(--yellow); font-size: 13px; font-weight: 800; }
.service-list h3 { margin: 0; font-size: 23px; line-height: 1.2; }
.service-list p { margin: 0; color: #c9c9c9; }

.testimonial { padding: clamp(70px, 10vw, 160px) clamp(20px, 9vw, 150px); background: var(--blue); color: #fff; }
.testimonial blockquote { max-width: 1400px; margin: 0; font-family: Georgia, serif; font-size: clamp(28px, 4vw, 62px); line-height: 1.13; }
.testimonial p { margin: 32px 0 0; color: var(--yellow); font-weight: 800; }
.contact {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  padding: clamp(70px, 9vw, 140px) clamp(20px, 7vw, 112px);
  background: var(--aqua);
}
.contact > div:last-child { align-self: end; max-width: 520px; font-size: 20px; }

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr .5fr;
  gap: 40px;
  padding: 50px clamp(20px, 5vw, 76px);
  background: var(--ink);
  color: #fff;
  font-size: 14px;
}
.footer-brand { font-family: var(--display); font-size: 32px; text-decoration: none; }
.site-footer p { margin: 8px 0 0; color: #bdbdbd; }
.footer-links { display: flex; flex-direction: column; gap: 8px; }

.article-main { background: #fff; }
.article-hero {
  padding: clamp(70px, 9vw, 140px) clamp(20px, 8vw, 130px);
  background: var(--yellow);
  border-bottom: 2px solid var(--ink);
}
.article-hero h1 { max-width: 1280px; font-size: clamp(48px, 8vw, 118px); overflow-wrap: anywhere; }
.article-hero > p:last-child { max-width: 760px; margin: 30px 0 0; font-size: clamp(18px, 2vw, 24px); }
.article-layout {
  display: grid;
  grid-template-columns: minmax(190px, .35fr) minmax(0, 900px);
  justify-content: center;
  gap: clamp(34px, 7vw, 110px);
  padding: clamp(55px, 8vw, 120px) clamp(20px, 6vw, 100px);
}
.article-aside { align-self: start; position: sticky; top: 28px; font-size: 14px; }
.article-aside a { display: inline-block; margin-bottom: 18px; color: var(--blue); font-weight: 800; }
.article-aside p { color: var(--muted); }
.prose { min-width: 0; font-family: Georgia, serif; font-size: 19px; line-height: 1.76; }
.prose > p:first-child { font-size: 24px; line-height: 1.55; }
.prose h2 { margin: 2.2em 0 .65em; font-family: var(--body); font-size: clamp(30px, 4vw, 48px); line-height: 1.08; }
.prose h3 { margin: 1.8em 0 .55em; font-family: var(--body); font-size: 25px; line-height: 1.2; }
.prose img { width: min(100%, 760px); margin: 38px auto; border: 1px solid var(--line); border-radius: 6px; }
.prose table { display: block; max-width: 100%; overflow-x: auto; border-collapse: collapse; font-family: var(--body); font-size: 15px; }
.prose th, .prose td { min-width: 150px; padding: 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.article-next { padding: clamp(60px, 8vw, 110px) clamp(20px, 7vw, 112px); background: var(--coral); }
.article-next h2 { max-width: 900px; margin-bottom: 28px; }
.article-next a { background: var(--ink); border-color: var(--ink); color: #fff; }

.library-main { min-height: 70vh; }
.library-hero { padding: clamp(70px, 9vw, 140px) clamp(20px, 7vw, 112px); background: var(--aqua); }
.library-hero h1 { font-size: clamp(62px, 10vw, 150px); }
.library-hero > p:last-child { max-width: 750px; font-size: 22px; }
.library-list { padding: clamp(50px, 7vw, 100px) clamp(20px, 5vw, 76px); background: var(--yellow); }

@media (max-width: 900px) {
  .site-header { min-height: 72px; flex-wrap: wrap; }
  .menu-button { display: inline-block; }
  .site-nav { display: none; width: 100%; flex-direction: column; align-items: flex-start; gap: 0; padding: 4px 0 12px; }
  .nav-open .site-nav { display: flex; }
  .site-nav a { width: 100%; padding: 12px 0; border-top: 1px solid #444; }
  .hero { min-height: 650px; }
  .section-heading, .fact, .services, .contact { grid-template-columns: 1fr; }
  .intro { grid-template-columns: 1fr; }
  .intro-mark { min-height: 360px; }
  .article-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .services-lead { position: static; }
  .service-list article { grid-template-columns: 42px 1fr; }
  .service-list p { grid-column: 2; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 1 / -1; flex-direction: row; flex-wrap: wrap; gap: 20px; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; border-bottom: 1px solid var(--line); }
}

@media (max-width: 620px) {
  body { font-size: 16px; }
  .hero { min-height: 590px; padding-bottom: 76px; background-position: 63% center; }
  .hero::before { background-size: 380px auto; background-position: 120% 5%; }
  .hero h1 { font-size: clamp(50px, 18vw, 78px); }
  .hero-stamp { left: 20px; right: auto; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 10px; }
  .article-tabs { display: grid; grid-template-columns: 1fr 1fr; }
  .article-tabs button { padding-inline: 8px; font-size: 14px; }
  .article-grid { grid-template-columns: 1fr; }
  .article-card { min-height: 220px; }
  .intro-mark { min-height: 300px; }
  .intro-copy { padding-inline: 20px; }
  .service-list article { display: block; }
  .service-list h3 { margin: 8px 0; }
  .service-list p { margin-top: 10px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
  .article-hero h1 { font-size: clamp(43px, 14vw, 68px); }
  .article-layout { padding-inline: 20px; }
  .prose { font-size: 17px; }
  .prose > p:first-child { font-size: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
