﻿:root {
  --bg: #fcfaf3;
  --paper: #f5f0e3;
  --text: #151515;
  --muted: #676256;
  --line: #1f1d19;
  --accent: #1e6b43;
  --max: 1040px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.62;
  font-size: 1.1875rem;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 100% 5px;
  opacity: 0.08;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 30;
  padding: 0.7rem 1rem;
  background: var(--text);
  color: var(--bg);
  font-family: "Courier New", Courier, monospace;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header,
main,
.site-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
}

.site-header {
  padding-top: 1rem;
}

.site-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0 1.2rem;
  border-bottom: 1px solid var(--line);
}

.brand,
.nav-links a,
a {
  color: inherit;
  text-decoration: none;
}

.brand {
  font-family: "Courier New", Courier, monospace;
  letter-spacing: 0.02em;
  font-size: 0.92rem;
  line-height: 1.35;
  flex: 1 1 26rem;
  max-width: 100%;
}

.nav-links {
  display: flex;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-family: "Courier New", Courier, monospace;
  font-size: 0.92rem;
  flex: 0 1 auto;
}

.nav-links a:hover,
.nav-links a:focus-visible,
a:hover,
a:focus-visible {
  color: var(--accent);
}

.section {
  padding: 3rem 0;
}

.section-label,
.terminal-kicker {
  margin: 0 0 0.85rem;
  font-family: "Courier New", Courier, monospace;
  color: var(--muted);
  font-size: 1.2rem;
  letter-spacing: 0.03em;
}

.hero {
  padding-top: 2rem;
}

.editorial-hero-grid,
.split-editorial {
  display: grid;
  grid-template-columns: 1.45fr 0.95fr;
  gap: 2rem;
}

.hero-copy-block {
  max-width: 38rem;
}

.section-head {
  max-width: 42rem;
  margin-bottom: 1.5rem;
}

.section-head.narrow {
  max-width: 28rem;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  font-weight: 700;
}

h1 {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  max-width: 11ch;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.32rem, 2.8vw, 1.88rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-family: "Courier New", Courier, monospace;
  font-size: 1rem;
  margin-bottom: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.lead,
.section-intro,
.copy-column {
  max-width: 44rem;
}

.button {
  display: inline-block;
  padding: 0.7rem 1rem;
  border: 1px solid var(--line);
  background: var(--text);
  color: var(--bg);
  font-family: "Courier New", Courier, monospace;
}

.button:hover,
.button:focus-visible {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.editorial-section {
  border-top: 1px solid var(--line);
}

.editorial-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
}

.editorial-item,
.editorial-panel {
  background: rgba(245, 240, 227, 0.58);
  border: 1px solid rgba(31, 29, 25, 0.16);
}

.editorial-item {
  padding: 1.1rem 1.15rem 1.2rem;
}

.editorial-item h3::before {
  content: "> ";
  color: var(--accent);
}

.editorial-panel {
  padding: 1.25rem 1.25rem 1.35rem;
}

.quiet-panel {
  align-self: start;
}

.hero-side-column {
  display: grid;
  gap: 1rem;
  align-self: start;
}

.hero-logo-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 1.25rem;
  box-sizing: border-box;
}

.hero-logo {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}

.process-list {
  margin: 0;
  padding-left: 1.25rem;
}

.process-list li+li {
  margin-top: 0.3rem;
}

.site-footer {
  padding-bottom: 3rem;
}

.footer-editorial {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.contact-block {
  margin: 0;
  font-style: normal;
}

.scroll-top-link {
  position: fixed;
  right: 1rem;
  top: 68vh;
  z-index: 20;
  width: 2.4rem;
  height: 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(31, 29, 25, 0.2);
  background: rgba(252, 250, 243, 0.72);
  color: var(--muted);
  font-family: "Courier New", Courier, monospace;
  font-size: 1.1rem;
  line-height: 1;
  backdrop-filter: blur(2px);
}

.scroll-top-link:hover,
.scroll-top-link:focus-visible {
  color: var(--accent);
  border-color: rgba(30, 107, 67, 0.45);
  background: rgba(252, 250, 243, 0.9);
}

@media (max-width: 820px) {

  .editorial-hero-grid,
  .split-editorial,
  .editorial-list {
    grid-template-columns: 1fr;
  }

  body {
    font-size: 1.0625rem;
  }

  .hero-logo {
    width: 50%;
  }
}

@media (max-width: 640px) {
  .site-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .brand {
    flex: initial;
    width: 100%;
    font-size: 0.82rem;
    line-height: 1.25;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 0.75rem 1rem;
  }

  .section {
    padding: 2.35rem 0;
  }

  .scroll-top-link {
    right: 0.7rem;
    top: auto;
    bottom: 1rem;
    width: 2.2rem;
    height: 2.2rem;
  }
}

/* cache-bust 2026-05-07T16:45 */

.workflow-panel {
  max-width: 52rem;
}

.workflow-list {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.workflow-list li+li {
  margin-top: 0.5rem;
}

.workflow-list li::before {
  content: "> ";
  color: var(--accent);
}

/* cache-bust 2026-05-07T16:52 */






.workflow-section .split-editorial {
  align-items: start;
}

.workflow-section .section-head {
  margin-bottom: 0;
}

.workflow-panel {
  align-self: start;
}

/* cache-bust 2026-05-07T18:21 */

.stacked-panels {
  display: grid;
  gap: 1rem;
  align-self: start;
}

/* cache-bust 2026-05-07T18:24 */

.photo-panel {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(245, 240, 227, 0.58);
  border: 1px solid rgba(31, 29, 25, 0.16);
}

.profile-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* cache-bust 2026-05-07T19:46 */


.editorial-item h3,
.editorial-panel h3 {
  font-size: 1rem;
}

/* cache-bust 2026-05-07T20:00 */

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1rem;
}

.button-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #175636;
  border-color: #175636;
}

.button-secondary {
  background: transparent;
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--text);
  color: var(--bg);
}

/* cache-bust 2026-05-07T20:05 */

.hero-cta-block {
  margin-top: 1.2rem;
}

.hero-cta-heading {
  margin: 0 0 0.35rem;
  font-family: "Courier New", Courier, monospace;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
}

/* cache-bust 2026-05-07T20:08 */


