:root {
  --navy: #1b2a4a;
  --navy-deep: #101a30;
  --red: #c8352e;
  --white: #ffffff;
  --paper: #f7f5f1;
  --ink: #1c1c1c;
  --ink-soft: #55575c;
  --border: #e4e1da;
  --radius: 4px;
  --max: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--navy);
}

p { margin: 0 0 1em; color: var(--ink-soft); }

a { color: inherit; text-decoration: none; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}

.site-nav { display: flex; gap: 28px; }

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}

.site-nav a:hover { color: var(--red); }

/* Hero */
.hero {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: var(--white);
  padding: 120px 0 96px;
  text-align: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 600;
  color: #b7c1d6;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  margin-bottom: 14px;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
}

.hero-sub {
  max-width: 560px;
  margin: 0 auto 36px;
  color: #d7dce6;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.94rem;
  transition: opacity 0.15s, transform 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover { opacity: 0.9; }

.btn-ghost {
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
}

.btn-ghost:hover { border-color: var(--white); }

/* Sections */
.section { padding: 88px 0; }

.section-alt { background: var(--paper); }

.section-title-center {
  text-align: center;
  margin-bottom: 48px;
  font-size: 2rem;
}

.two-col {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}

.col-text h2 { font-size: 2rem; }

.note {
  font-size: 0.9rem;
  color: var(--ink-soft);
  border-left: 3px solid var(--red);
  padding-left: 14px;
  margin-top: 24px;
}

.headshot {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.pillar-num {
  font-family: 'Fraunces', serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.08em;
}

.pillar h3 { margin-top: 10px; font-size: 1.3rem; }

.pillar p { margin-bottom: 0; }

/* Media */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  display: block;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.15s, transform 0.15s;
}

.media-card:hover {
  border-color: var(--red);
  transform: translateY(-2px);
}

.media-card h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.media-card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.media-card-placeholder {
  opacity: 0.6;
  cursor: default;
}

.media-card-placeholder:hover {
  border-color: var(--border);
  transform: none;
}

/* Contact */
.contact-inner {
  text-align: center;
  max-width: 520px;
}

.contact-inner h2 { font-size: 2rem; }

/* Footer */
.site-footer {
  background: var(--navy-deep);
  color: #9aa4b8;
  padding: 28px 0;
  font-size: 0.85rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}

/* Responsive */
@media (max-width: 760px) {
  .site-nav { display: none; }
  .two-col { grid-template-columns: 1fr; }
  .pillars, .media-grid { grid-template-columns: 1fr; }
  .hero { padding: 88px 0 64px; }
  .section { padding: 64px 0; }
}
