:root {
  --bg: #ffffff;
  --ink: #172033;
  --muted: #5f6b7a;
  --line: #e3e7ee;
  --soft: #f5f7fa;
  --accent: #7b1e2b;
  --accent-dark: #5f1721;
  --max: 1160px;
  --narrow: 820px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.68;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.narrow { max-width: var(--narrow); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.site-brand { font-weight: 800; letter-spacing: -.02em; color: var(--ink); font-size: 1.05rem; }
.site-brand:hover { text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 22px; }
.site-nav a { color: var(--ink); font-size: .94rem; font-weight: 650; }
.site-nav a:hover { color: var(--accent); text-decoration: none; }
.nav-toggle { display: none; border: 0; background: transparent; font-size: 1.6rem; }

.hero { padding: 78px 0 70px; background: linear-gradient(180deg, #fbfbfc 0%, #fff 100%); border-bottom: 1px solid var(--line); }
.hero-grid { display: grid; grid-template-columns: 290px 1fr; align-items: center; gap: 62px; }
.hero-photo-wrap { width: 290px; height: 360px; border-radius: 22px; overflow: hidden; background: var(--soft); box-shadow: 0 16px 40px rgba(25,35,55,.12); }
.profile-photo { width: 100%; height: 100%; object-fit: cover; }
.eyebrow { margin: 0 0 8px; font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; color: var(--accent); }
h1, h2, h3 { line-height: 1.15; letter-spacing: -.028em; }
h1 { font-size: clamp(2.55rem, 5vw, 4.7rem); margin: 0 0 14px; }
h2 { font-size: clamp(2rem, 3.2vw, 3rem); margin: 0 0 20px; }
h3 { font-size: 1.3rem; margin: 0 0 12px; }
.hero-title { font-size: 1.25rem; color: var(--muted); margin: 0 0 22px; font-weight: 650; }
.lead { font-size: 1.2rem; color: #3f4a59; max-width: 820px; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-block; padding: 11px 17px; border: 1px solid #cfd5df; border-radius: 9px; color: var(--ink); font-weight: 700; background: #fff; }
.button:hover { text-decoration: none; border-color: #aeb7c5; transform: translateY(-1px); }
.button.primary { background: var(--accent); border-color: var(--accent); color: white; }
.button.primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); }

.section { padding: 74px 0; }
.section.alt { background: var(--soft); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-heading { margin-bottom: 28px; }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.card { padding: 26px; border: 1px solid var(--line); border-radius: 14px; background: white; box-shadow: 0 6px 20px rgba(30,40,60,.04); }
.card p { color: var(--muted); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.principles { margin: 0; padding: 0; list-style: none; counter-reset: item; }
.principles li { padding: 18px 0; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: 130px 1fr; gap: 18px; }
.principles span { color: var(--muted); }
.callout { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.callout > div { max-width: 760px; }

.page-hero { padding: 64px 0 52px; background: var(--soft); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-size: clamp(2.4rem, 4.5vw, 4rem); }
.content-page { max-width: 900px; padding-top: 58px; padding-bottom: 86px; }
.content-page h2 { margin-top: 46px; font-size: 2rem; }
.content-page h3 { margin-top: 32px; }
.content-page p, .content-page li { color: #344052; }
.content-page hr { border: 0; border-top: 1px solid var(--line); margin: 48px 0; }
.content-page ul { padding-left: 24px; }
.content-page li { margin: 7px 0; }
.contact-card { max-width: 760px; }

.site-footer { border-top: 1px solid var(--line); padding: 42px 0 24px; background: #111827; color: #dbe1ea; }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 30px; }
.footer-links { display: flex; flex-direction: column; align-items: flex-end; gap: 8px; }
.site-footer a { color: #fff; }
.copyright { margin-top: 30px; padding-top: 20px; border-top: 1px solid #2a3343; font-size: .85rem; color: #9faabd; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 220px 1fr; gap: 34px; }
  .hero-photo-wrap { width: 220px; height: 280px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: block; }
  .site-nav { display: none; position: absolute; left: 0; right: 0; top: 74px; background: white; border-bottom: 1px solid var(--line); padding: 18px 20px 22px; flex-direction: column; align-items: flex-start; gap: 12px; }
  .site-nav.open { display: flex; }
  .hero { padding-top: 46px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-photo-wrap { width: min(270px, 75vw); height: 330px; }
  .card-grid { grid-template-columns: 1fr; }
  .callout { align-items: flex-start; flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { align-items: flex-start; }
  .principles li { grid-template-columns: 1fr; gap: 6px; }
}
