:root {
  --container-max: 1440px;
  --gutter: 24px;
  --text: #111111;
  --border: #e5e7eb;
}

html, body { height: 100%; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.3;
  font-size: 14px;
  padding: 34px 30px;
}

.site-header { padding-top: 0; padding-bottom: 16px; }

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

.site-title { 
  font-weight: 400; 
  font-size: 14px; 
  display: inline; 
  text-transform: uppercase; 
}

.site-subtitle { 
  margin: 0; 
  color: var(--text); 
  font-size: 14px; 
  display: inline; 
}

.section { margin-top: 120px; margin-bottom: 120px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(var(--gutter) * 3);
}

@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.card {
  background: transparent;
  border: none;
  padding: 0;
}

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

.list li { margin-bottom: 6px; }

a { 
  color: var(--text); 
  text-decoration: underline; 
}

a:hover { text-decoration: underline; }

.section-title {
  margin: 0 0 50px 0;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text);
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--text);
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  font-weight: 400;
}

.card > h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.card > h3 > span {
  text-transform: uppercase;
}

.card p { margin: 0 0 24px 0; }

/* Hide links with href="#" (placeholder links) */
.card a[href="#"] { display: none; }

/* Show links with real hrefs */
.card a[href]:not([href="#"]) { display: inline; }

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  color: var(--text);
  margin-top: 24px;
  margin-bottom: 0;
  min-height: 105px;
}

.footer-logo {
  height: 105px;
  width: 105px;
}

.footer-text {
  margin: 0;
  text-align: left;
}

.span-2 { grid-column: span 2; }