/* Analytics Corp - Corporate stylesheet
 * Author: a2@dev-nul.org
 * Generated/edited with Claude
 * Copyright: dev-nul.org
 */

:root {
  --bg:        #f4f5f6;
  --white:     #ffffff;
  --navy:      #1a2540;
  --steel:     #3d5a8a;
  --text:      #2c2c2c;
  --muted:     #6b7280;
  --border:    #dde1e7;
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
  --max-width: 900px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

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

a:hover {
  text-decoration: underline;
}

/* Layout */

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

/* Header */

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 0;
  border-bottom: 3px solid var(--steel);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}

.site-name {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-decoration: none;
}

.site-name:hover {
  text-decoration: none;
  color: var(--white);
  opacity: 0.85;
}

.site-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.site-nav a {
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.85;
}

.site-nav a:hover {
  opacity: 1;
  text-decoration: none;
}

/* Main content */

.site-main {
  flex: 1;
  padding: 4rem 0;
}

.content-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 3rem;
  margin-bottom: 2rem;
}

h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
}

h2:first-child {
  margin-top: 0;
}

p {
  margin-bottom: 1rem;
  color: var(--text);
}

p:last-child {
  margin-bottom: 0;
}

.intro {
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* Member cards */

.member-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.member {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}

.member:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.member-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.member-location {
  font-size: 0.875rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

.member-desc {
  color: var(--text);
  margin-bottom: 0.75rem;
}

.member-contact {
  font-size: 0.875rem;
  color: var(--muted);
}

.member-contact a {
  color: var(--steel);
}

.member-footer {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.875rem;
  font-style: italic;
}

/* Legal / privacy sections */

.legal-section {
  margin-bottom: 2rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

/* Footer */

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 1.25rem 0;
  margin-top: auto;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: var(--white);
}

.footer-links a:hover {
  opacity: 0.85;
  text-decoration: none;
}

@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    height: auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    gap: 0.75rem;
  }

  .site-nav {
    gap: 1rem;
  }

  .content-card {
    padding: 1.5rem;
  }

  .site-footer .container {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
