:root {
  --font-sans: "Cabin", sans-serif;
  --font-serif: "Newsreader", serif;
  --font-reader: "Newsreader", "Noto Sans", serif;
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.03em;
  --tracking-xwide: 0.06em;
  --space-2xs: 8px;
  --space-xs: 12px;
  --space-sm: 16px;
  --space-md: 20px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 40px;
  --space-3xl: 48px;
  --space-4xl: 64px;
  --section-gap: var(--space-4xl);
  --background-default: #050505;
  --surface-primary: #fafafa;
  --surface-secondary: #050505;
  --bg: var(--background-default);
  --content-primary: #fafafa;
  --content-secondary: #d2d2d2;
  --content-tertiary: #808080;
  --content-primary-invert: #050505;
  --border: #3b3b3b;
  --overlay-60: rgba(5, 5, 5, 0.6);
  --overlay-75: rgba(5, 5, 5, 0.75);
  --hero-gradient: linear-gradient(
    to bottom,
    rgba(5, 5, 5, 0) 0%,
    #050505 77.404%
  );
  --thumb-gradient: linear-gradient(135deg, #1e1e1e, #0e0e0e);
  --side-margin: 84px;
  --max-width: 1272px;
  --line-height-sm: 20px;
  --line-height-lg: 28px;
  --line-height-xlg: 40px;
  --line-height-2xlg: 48px;
  --line-height-3xlg: 64px;
  --line-height-4xlg: 80px;
  --font-sm: 16px;
  --font-md: 20px;
  --font-lg: 24px;
  --font-xlg: 32px;
  --font-2xlg: 40px;
  --font-3xlg: 56px;
  --font-4xlg: 72px;
}

* {
  box-sizing: border-box;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body.crpg-body {
  margin: 0;
  background: var(--bg);
  color: var(--content-primary);
  font-family: var(--font-sans);
}

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

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

a:hover {
  opacity: 0.85;
}

.page-wrap {
  background: var(--bg);
}

.layout-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: var(--side-margin);
  padding-right: var(--side-margin);
}

.layout-section {
  padding: var(--section-gap) var(--side-margin);
  max-width: calc(var(--max-width) + (var(--side-margin) * 2));
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--overlay-75);
  backdrop-filter: blur(6px);
  padding: 0 var(--side-margin);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  margin: 0 auto;
  max-width: var(--max-width);
  /* padding: 0 var(--side-margin); */
}

.site-logo {
  display: flex;
  align-items: center;
}

.site-logo-img {
  height: 52px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
}

.nav-sep {
  color: var(--content-tertiary);
}

.nav-search-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: none;
  background: transparent;
  color: var(--content-primary);
  cursor: pointer;
  padding: 0;
}

.nav-search-trigger svg {
  width: 24px;
  height: 24px;
  stroke: var(--content-primary);
  fill: none;
  stroke-width: 1.8;
}

.nav-mobile {
  display: none;
  align-items: center;
  gap: 16px;
}

.nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--content-primary);
}

.nav-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--content-primary);
  fill: none;
  stroke-width: 1.8;
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: none;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer-overlay {
  position: absolute;
  inset: 0;
  background: var(--overlay-60);
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(320px, 80vw);
  background: var(--surface-secondary);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-drawer-title {
  font-size: 18px;
  font-weight: 700;
}

.nav-drawer-close {
  background: transparent;
  border: none;
  color: var(--content-primary);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.nav-drawer-links {
  display: grid;
  gap: 16px;
  font-size: 16px;
}

.drawer-open {
  overflow: hidden;
}

.breadcrumb {
  height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding: 0 var(--side-margin);
}

.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--content-secondary);
  flex: 1 0 auto;
}

.breadcrumb a {
  color: var(--content-secondary);
}

.breadcrumb-sep {
  color: var(--content-tertiary);
}

.breadcrumb-current {
  color: var(--content-primary);
}

.post-content {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--side-margin);
}

.post-article {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 32px;
}

.post-header h1 {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: var(--font-3xlg);
  line-height: var(--line-height-3xlg);
  letter-spacing: 0.01em;
}

.post-body {
  display: grid;
  gap: 20px;
  font-family: var(--font-reader);
  font-size: var(--font-md);
  line-height: var(--line-height-lg);
  color: var(--content-secondary);
}

.post-body h2,
.post-body h3,
.post-body h4 {
  margin: 24px 0 8px;
  font-family: var(--font-sans);
  font-weight: 700;
  color: var(--content-primary);
}

.post-body h2 {
  font-size: var(--font-xlg);
  line-height: var(--line-height-xlg);
  letter-spacing: -0.01em;
}

.post-body h3 {
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  letter-spacing: -0.05em;
}

.post-body h4 {
  font-size: var(--font-md);
  line-height: var(--line-height-lg);
  letter-spacing: 0;
}

.post-body p {
  margin: 0;
}

.post-body a {
  color: var(--content-primary);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.post-body ul,
.post-body ol {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
}

.post-body blockquote {
  margin: 16px 0;
  padding: 16px 20px;
  border-left: 2px solid var(--content-primary);
  background: rgba(250, 250, 250, 0.04);
  color: var(--content-primary);
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 24px 0;
}

.post-body figure,
.post-body .kg-image-card,
.post-body .kg-gallery-card,
.post-body .kg-embed-card,
.post-body .kg-video-card {
  margin: 16px 0;
}

.post-body img {
  border-radius: 6px;
  height: auto;
}

.post-body figcaption {
  margin-top: 8px;
  font-size: var(--font-sm);
  color: var(--content-tertiary);
}

.post-body pre {
  background: #101010;
  padding: 16px 20px;
  border-radius: 6px;
  overflow: auto;
  font-size: 14px;
  line-height: 1.6;
  color: var(--content-primary);
}

.post-body code {
  font-family: "Courier New", Courier, monospace;
  font-size: 0.95em;
  color: var(--content-primary);
}

.post-body .kg-width-wide {
  width: calc(100% + 120px);
  margin-left: -60px;
}

.post-body .kg-width-full {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  border-radius: 0;
}

.post-content-book {
  max-width: none;
}

.book-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 64px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}

.book-toc {
  position: sticky;
  top: 120px;
  align-self: start;
  display: grid;
  gap: 12px;
}

.toc-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--content-primary);
  font-size: var(--font-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.toc-panel {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  background: rgba(5, 5, 5, 0.6);
  max-height: calc(100vh - 136px);
  overflow-y: auto;
}

.toc-title {
  margin: 0 0 12px;
  font-size: var(--font-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--content-tertiary);
}

.toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  font-size: var(--font-sm);
  color: var(--content-secondary);
}

.toc-empty {
  display: none;
  margin: 8px 0 0;
  font-size: var(--font-sm);
  color: var(--content-tertiary);
}

.book-toc.is-empty .toc-list {
  display: none;
}

.book-toc.is-empty .toc-empty {
  display: block;
}

.toc-item {
  display: grid;
  gap: 6px;
}

.toc-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 28px;
}

.toc-link {
  color: var(--content-secondary);
  display: block;
  flex: 1;
  min-width: 0;
}

.toc-node-toggle {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--content-tertiary);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.toc-node-toggle::before {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  transition: transform 0.2s ease;
}

.toc-item.is-expanded > .toc-row .toc-node-toggle::before {
  transform: rotate(45deg);
}

.toc-sublist {
  margin: 0 0 0 8px;
  padding: 0 0 0 16px;
  list-style: none;
  position: relative;
  border-left: 1px solid var(--border);
  display: grid;
  gap: 6px;
}

.toc-depth-2 {
  border-left-width: 2px;
}

.toc-sublist[hidden] {
  display: none;
}

.toc-item.is-current-branch > .toc-row > .toc-link {
  color: var(--content-primary);
}

.toc-item.is-active > .toc-row > .toc-link {
  font-weight: 700;
}

.listing-hero {
  padding: 160px var(--side-margin) 80px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.9) 0%, #050505 100%);
}

.listing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: left;
}

.listing-kicker {
  margin: 0 0 16px;
  font-size: var(--font-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--content-tertiary);
}

.listing-hero h1 {
  margin: 0 0 16px;
  font-size: var(--font-4xlg);
  line-height: var(--line-height-4xlg);
  letter-spacing: var(--tracking-tight);
}

.listing-description {
  margin: 0;
  max-width: 720px;
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  color: var(--content-secondary);
}

.listing-posts {
  padding-top: var(--space-4xl);
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 48px;
  font-size: var(--font-sm);
  color: var(--content-secondary);
}

.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 4px;
  border: 1px solid var(--content-primary);
  color: var(--content-primary);
  letter-spacing: var(--tracking-wide);
}

.pagination .page-number {
  color: var(--content-tertiary);
}

.about-page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-4xl) var(--side-margin) var(--section-gap);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 64px;
  align-items: center;
}

.about-kicker {
  margin: 0 0 16px;
  font-size: var(--font-sm);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--content-tertiary);
}

.about-copy h1 {
  margin: 0 0 24px;
  font-size: var(--font-3xlg);
  line-height: var(--line-height-3xlg);
  letter-spacing: var(--tracking-tight);
}

.about-body {
  color: var(--content-secondary);
}

.about-collage {
  position: relative;
  min-height: 420px;
}

.collage-card {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  background: var(--surface-secondary);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.collage-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collage-primary {
  width: 72%;
  height: 320px;
  left: 0;
  top: 40px;
  transform: rotate(-2deg);
}

.collage-secondary {
  width: 56%;
  height: 220px;
  right: 0;
  top: 0;
  transform: rotate(4deg);
}

.collage-tertiary {
  width: 48%;
  height: 200px;
  right: 10%;
  bottom: 0;
  transform: rotate(-3deg);
}

.collage-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-family: var(--font-serif);
  font-size: var(--font-lg);
  color: var(--content-primary);
  background: linear-gradient(120deg, #1a1a1a, #080808);
}

.collage-block {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1e1e1e, #0b0b0b);
}

.hero {
  position: relative;
  min-height: 716px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 200px var(--side-margin) 64px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--bg);
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  opacity: 0.9;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--hero-gradient);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
}

.hero-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
  font-size: 36px;
  line-height: 1;
  margin-bottom: 32px;
}

.hero-logo-text {
  display: block;
}

.hero-logo-img {
  width: 292px;
  height: 135px;
  object-fit: contain;
}

.hero h1 {
  font-size: var(--font-4xlg);
  line-height: var(--line-height-4xlg);
  margin: 0 0 24px;
  letter-spacing: var(--tracking-tight);
}

.hero p {
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  color: var(--content-secondary);
  margin: 0 auto;
}

.section-divider {
  width: 328px;
  height: 1px;
  margin: 0 auto;
  background: var(--content-tertiary);
  opacity: 0.8;
}

.section {
  padding: var(--section-gap) var(--side-margin);
  max-width: calc(var(--max-width) + (var(--side-margin) * 2));
  margin: 0 auto;
}

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

.values-col h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: var(--font-xlg);
  line-height: var(--line-height-xlg);
  margin: 0 0 48px;
}

.value-item {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}

.value-item h3 {
  font-family: var(--font-sans);
  font-size: var(--font-lg);
  line-height: var(--line-height-lg);
  margin: 0;
}

.value-item p {
  margin: 0;
  font-size: var(--font-md);
  line-height: var(--line-height-lg);
  color: var(--content-secondary);
}

.recruit p {
  margin: 0 0 16px;
  font-size: var(--font-md);
  line-height: var(--line-height-lg);
  color: var(--content-secondary);
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-weight: 700;
  margin: 0;
  font-size: var(--font-3xlg);
  line-height: var(--line-height-3xlg);
  letter-spacing: -0.01em;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 20px;
  border: 1px solid var(--content-primary);
  border-radius: 4px;
  font-size: var(--font-sm);
  letter-spacing: var(--tracking-wide);
}

.posts {
  display: grid;
  gap: 24px;
}

.post-list {
  display: grid;
  gap: 32px;
}

.post-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 498px;
  gap: 40px;
  align-items: start;
}

.post-title {
  font-family: var(--font-sans);
  font-weight: 700;
  margin: 0 0 12px;
  font-size: var(--font-2xlg);
  line-height: var(--line-height-2xlg);
  letter-spacing: -0.01em;
}

.post-title a {
  color: var(--content-primary);
}

.post-excerpt {
  margin: 0 0 12px;
  font-size: var(--font-md);
  line-height: var(--line-height-lg);
  color: var(--content-secondary);
}

.post-author {
  margin: 0;
  font-size: var(--font-sm);
  line-height: var(--line-height-sm);
  color: var(--content-tertiary);
}

.post-thumb {
  display: block;
  width: 100%;
  height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--surface-secondary);
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--thumb-gradient);
}

.empty-state {
  color: var(--content-tertiary);
  font-size: var(--font-md);
}

.footer {
  border-top: 1px solid var(--content-tertiary);
  padding: var(--section-gap) var(--side-margin) var(--space-3xl);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) 1fr;
  gap: 32px 64px;
  max-width: var(--max-width);
  margin: 0 auto 32px;
  align-items: start;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 56px;
  width: auto;
  display: block;
}

.footer-nav {
  display: grid;
  gap: 12px;
  font-size: var(--font-sm);
  align-content: start;
  justify-items: start;
}

.footer-links {
  display: flex;
  align-items: flex-start;
  gap: 64px;
}

.email-form {
  display: grid;
  gap: 12px;
}

.email-form label {
  font-size: var(--font-sm);
  color: var(--content-secondary);
}

.input-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--content-secondary);
  border-radius: 4px;
  height: 48px;
  padding: 0 16px;
  flex: 1;
}

.input-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--content-secondary);
  fill: none;
  stroke-width: 1.5;
}

.input-wrap input {
  background: transparent;
  border: none;
  color: var(--content-primary);
  font-size: var(--font-sm);
  width: 100%;
  outline: none;
}

.input-wrap input::placeholder {
  color: var(--content-tertiary);
}

.email-form button {
  height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: 4px;
  background: var(--content-primary);
  color: var(--content-primary-invert);
  font-size: var(--font-sm);
  cursor: pointer;
}

.form-notice {
  font-size: var(--font-sm);
  color: #e57373;
  min-height: 20px;
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  font-size: var(--font-sm);
  color: var(--content-secondary);
}

@media (max-width: 1200px) {
  .post-item {
    grid-template-columns: minmax(0, 1fr) 360px;
  }
}

@media (max-width: 1024px) {
  .hero {
    min-height: 743px;
  }
}

@media (max-width: 768px) {
  :root {
    --side-margin: 64px;
    --section-gap: var(--space-3xl);
  }

  .nav-links {
    display: none;
  }

  .nav-mobile {
    display: flex;
  }

  .hero {
    min-height: 819px;
    padding-top: 200px;
    padding-bottom: 48px;
  }

  .listing-hero {
    padding-top: 140px;
    padding-bottom: 64px;
  }

  .listing-hero h1 {
    font-size: 48px;
    line-height: 56px;
  }

  .book-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .book-toc {
    position: static;
  }

  .toc-toggle {
    display: inline-flex;
  }

  .toc-panel {
    display: none;
    max-height: min(60vh, calc(100vh - 220px));
  }

  .book-toc.is-open .toc-panel {
    display: block;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-collage {
    order: -1;
    min-height: 320px;
  }

  .collage-primary {
    width: 78%;
    height: 260px;
  }

  .collage-secondary {
    width: 60%;
    height: 180px;
  }

  .collage-tertiary {
    width: 56%;
    height: 160px;
  }

  .post-body .kg-width-wide,
  .post-body .kg-width-full {
    width: 100%;
    margin-left: 0;
    border-radius: 6px;
  }

  .hero-content {
    max-width: 640px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: var(--section-gap);
    padding-bottom: var(--section-gap);
  }

  .section-header h2 {
    font-size: 40px;
    line-height: 48px;
  }

  .post-item {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .post-thumb {
    height: auto;
    aspect-ratio: 498 / 280;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-links {
    gap: 32px;
  }

  .input-row {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 428px) {
  :root {
    --side-margin: 20px;
    --section-gap: var(--space-2xl);
    --font-4xlg: 48px;
    --line-height-4xlg: 56px;
    --font-3xlg: 40px;
    --line-height-3xlg: 48px;
    --font-2xlg: 36px;
    --line-height-2xlg: 40px;
    --font-xlg: 28px;
    --line-height-xlg: 36px;
    --font-lg: 20px;
    --font-md: 16px;
    --line-height-lg: 24px;
    --font-sm: 14px;
    --line-height-sm: 18px;
  }

  .hero {
    min-height: 847px;
    padding-top: 200px;
    padding-bottom: 40px;
  }

  .listing-hero {
    padding-top: 120px;
    padding-bottom: 48px;
  }

  .listing-kicker {
    font-size: 12px;
  }

  .about-copy h1 {
    font-size: 40px;
    line-height: 48px;
  }

  .about-collage {
    min-height: 280px;
  }

  .collage-primary {
    width: 82%;
    height: 220px;
  }

  .collage-secondary {
    width: 62%;
    height: 160px;
  }

  .collage-tertiary {
    width: 58%;
    height: 140px;
  }

  .hero-logo {
    font-size: 28px;
  }

  .nav-inner {
    height: 72px;
  }

  .site-logo-img {
    height: 40px;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
