:root {
  --color-bg: #f4f1ea;
  --color-surface: #ffffff;
  --color-text: #1d2b22;
  --color-accent: #2a5d43;
  --color-border: #1d2b22;
  --shadow-hard: 4px 4px 0px 0px var(--color-border);
  --radius-pill: 9999px;
  --radius-card: 40px;
  --space-xs: clamp(0.5rem, 1vw, 0.75rem);
  --space-sm: clamp(1rem, 2vw, 1.5rem);
  --space-md: clamp(1.5rem, 4vw, 2.5rem);
  --space-lg: clamp(3rem, 6vw, 5rem);
  --font-head:
    "Impact", "Arial Narrow", "Roboto Condensed", system-ui, -apple-system,
    sans-serif;
  --font-body: system-ui, -apple-system, sans-serif;
}
body {
  margin: 0;
  background-color: var(--color-bg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.5;
}
h1,
h2,
h3,
h4,
.brand-text,
.nav-link,
.btn {
  font-family: var(--font-head);
  font-stretch: condensed;
  font-weight: 700;
  margin: 0;
  letter-spacing: 0.03em;
}
a {
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.5rem;
  background: var(--color-accent);
  color: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-hard);
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0px 0px var(--color-border);
  color: var(--color-surface);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-surface);
  border-bottom: 2px solid var(--color-border);
  box-shadow: 0 4px 0 0 rgba(29, 43, 34, 0.1);
  padding: var(--space-sm) var(--space-md);
}
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-accent);
}
.logo-wrapper svg {
  width: 36px;
  height: 36px;
  stroke: var(--color-accent);
  fill: none;
}
.brand-text {
  font-size: 1.75rem;
  text-transform: uppercase;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}
.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: var(--space-sm);
}
.nav-link {
  text-transform: uppercase;
  font-size: 1.1rem;
  padding: 0.25rem 0;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.2s;
}
.nav-link:hover::after {
  width: 100%;
}
.burger-menu {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.5rem;
}
.burger-menu svg {
  width: 32px;
  height: 32px;
}
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100vh;
  background: var(--color-surface);
  border-right: 2px solid var(--color-border);
  box-shadow: var(--shadow-hard);
  z-index: 1002;
  transform: translateX(-100%);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: var(--space-md);
}
.mobile-drawer.is-open {
  transform: translateX(0);
}
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(29, 43, 34, 0.6);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.drawer-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}
.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-sm);
  border-bottom: 2px solid var(--color-border);
}
.drawer-close {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  padding: 0.25rem;
}
.drawer-close svg {
  width: 28px;
  height: 28px;
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0 0 var(--space-lg) 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}
.site-footer {
  background: var(--color-bg);
  padding: var(--space-lg) var(--space-md) var(--space-sm);
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}
.card-pill {
  background: var(--color-surface);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: var(--shadow-hard);
}
.footer-brand {
  font-size: 2.5rem;
  color: var(--color-accent);
  margin-bottom: var(--space-xs);
  text-transform: uppercase;
}
.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--color-text);
  margin: 0;
}
.footer-section h3 {
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
  text-transform: uppercase;
  border-bottom: 2px solid var(--color-border);
  display: inline-block;
  padding-bottom: 0.25rem;
}
.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}
.footer-list a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
}
.footer-list a:hover {
  color: var(--color-accent);
}
.footer-list svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: var(--color-accent);
}
.footer-bottom {
  text-align: center;
  padding-top: var(--space-md);
  font-family: var(--font-head);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 1.1rem;
  border-top: 2px solid var(--color-border);
}
@media (max-width: 860px) {
  .main-nav {
    display: none;
  }
  .burger-menu {
    display: block;
  }
  .footer-container {
    grid-template-columns: 1fr;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */
.card {
  background-color: #f4f6f8;
  box-shadow: 6px 6px 0px #1a1e21;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px;
  margin: 0 auto;
}

.bg-neutral {
  background-color: #f4f6f8;
}

.bg-neutral-alt {
  background-color: #e8ecef;
}

.hard-shadow {
  box-shadow: 6px 6px 0px #1a1e21;
}


.outline-accent {
  outline: 2px solid #4169e1;
  outline-offset: -2px;
}

.p-8 {
  padding: 32px;
}

.my-8 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.pl-5 {
  padding-left: 20px;
}

.typography-condensed-headings {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  color: #1a1e21;
}

.text-accent {
  color: #4169e1;
}

.text-muted {
  color: #4a5259;
}

.last-updated {
  font-size: 0.875rem;
  color: #4a5259;
  margin-bottom: 24px;
}

.card h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 16px;
}

.card h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 8px;
}

.card p {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a5259;
  margin-bottom: 16px;
}

.card ul {
  margin: 16px 0;
  padding-left: 20px;
}

.card li {
  font-size: 1rem;
  line-height: 1.5;
  color: #4a5259;
  margin-bottom: 8px;
}

.card a {
  color: #4169e1;
  text-decoration: underline;
}

.contact-info {
  padding: 16px;
  box-shadow: 6px 6px 0px #1a1e21;
  outline: 2px solid #4169e1;
  outline-offset: -2px;
  margin-top: 16px;
}

.contact-info p {
  margin-bottom: 8px;
}

.contact-info p:last-child {
  margin-bottom: 0;
}