/* ── Reset ──────────────────────────────────────────────────────────────── */

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

/* ── Design Tokens ──────────────────────────────────────────────────────── */

:root {
  --blue:   #2b5797;
  --text:   #000000;
  --faint:  #999999;
  --border: #dddddd;
  --bg:     #ffffff;

  --max:  680px;
  --pad:  clamp(1.25rem, 5vw, 2.5rem);
  --mono: 'IBM Plex Mono', monospace;
}

/* ── Base ───────────────────────────────────────────────────────────────── */

body {
  font-family: var(--mono);
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

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

a:hover {
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

/* ── Navigation ─────────────────────────────────────────────────────────── */

nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0.9rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
}

/* ── Layout ─────────────────────────────────────────────────────────────── */

.site-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) 5rem;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

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

  .hero-photo {
    order: -1;
  }
}

.hero-photo {
  width: clamp(130px, 20vw, 180px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

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

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.25rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero-eyebrow::after {
  content: '';
  display: block;
  width: 1.5rem;
  height: 1px;
  background: var(--blue);
  opacity: 0.4;
}

h1 {
  font-size: clamp(1.7rem, 4.5vw, 2.4rem);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.4rem;
}

.hero-text h2 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 300;
  font-style: italic;
  color: var(--blue);
  margin-top: 0.3rem;
  margin-bottom: 0.9rem;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  margin: 0.9rem 0 1.5rem;
}

/* ── CTA Button ─────────────────────────────────────────────────────────── */

.cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1.25rem;
  background: var(--blue);
  color: var(--bg);
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: opacity 0.2s, transform 0.15s;
}

.cta:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.cta:active {
  transform: translateY(0);
}

/* ── Body List ──────────────────────────────────────────────────────────── */

.body-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2.5rem;
}

.body-list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.body-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text);
  font-weight: 400;
}

/* ── Contact ────────────────────────────────────────────────────────────── */

.contact-head {
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--faint);
}

.contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.contact-list li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: 0.95rem;
}

.contact-list li::before {
  content: '—';
  flex-shrink: 0;
  font-size: 0.8rem;
  color: var(--border);
}

.contact-list a:hover {
  text-decoration: underline;
}

/* ── Legal Pages ────────────────────────────────────────────────────────── */

.legal-wrapper {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--pad) 5rem;
}

.legal-wrapper h1 {
  margin-bottom: 1.75rem;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 300;
}

.legal-wrapper h2 {
  margin: 2rem 0 0.5rem;
  font-size: 1.1rem;
  font-weight: 300;
}

.legal-wrapper h3 {
  margin: 1.5rem 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.legal-wrapper p {
  margin-bottom: 0.8rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

.legal-wrapper ul {
  list-style: none;
  padding-left: 1.1rem;
  margin-bottom: 0.8rem;
}

.legal-wrapper li {
  position: relative;
  margin-bottom: 0.35rem;
  font-size: 0.875rem;
  line-height: 1.75;
}

.legal-wrapper li::before {
  content: '–';
  position: absolute;
  left: -1.1rem;
}

.legal-wrapper strong {
  font-weight: 600;
}

.address-block {
  margin: 0.5rem 0 1.5rem;
  font-size: 0.875rem;
  line-height: 2;
}

.address-block {
  margin: 0.5rem 0 1.5rem;
  line-height: 2;
}

/* ── Footer ─────────────────────────────────────────────────────────────── */

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--faint);
}

.footer-nav {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.footer-nav a {
  font-size: 0.78rem;
  color: var(--faint);
}

.footer-nav a:hover {
  color: var(--blue);
}