:root{
  --bg: #f6f1ea;
  --text: #0e1412;
  --muted: #2b3a34;
  --accent: #0f3b2f;
  --accentHover: #0b2e24;
  --rule: rgba(14, 20, 18, .14);
  --maxw: 980px;
}

*{ box-sizing: border-box; }
html,body{ margin:0; padding:0; }
body{
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  line-height: 1.55;
}

a{ color: var(--accent); text-decoration: none; }
a:hover{ text-decoration: underline; }

.page{
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 28px 18px 60px;
}

.header{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.brand{
  display:flex;
  align-items:flex-start;
  gap: 14px;
}
.brand img{
  width: 200px;
  height: auto;
  display:block;
  background: #fff;
  border-radius: 6px;
  padding: 6px;
}

.nav-wrap{
  text-align: right;
  min-width: 240px;          /* a touch more room */
}

.tagline{
  font-size: 12px;
  color: rgba(14,20,18,.75);
  margin: 2px 0 12px;        /* a little more breathing room */
}

.nav{
  display: flex;
  flex-direction: column;
  gap: 12px;                 /* slightly airier */
  font-size: 13px;           /* clearer */
  line-height: 1.25;
}

.nav a{
  color: var(--muted);
  text-decoration: none;
  padding: 2px 0;            /* makes spacing feel intentional */
  transition: opacity .15s ease;
}

.nav a:hover{
  opacity: .65;              /* subtle, premium hover */
  text-decoration: none;
}

.nav a.active{
  color: var(--accent);
  font-weight: 600;
}
h1{
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 54px;
  letter-spacing: .2px;
  margin: 14px 0 18px;
}
/* Section titles */
h2 {
  font-size: 18px;          /* up from ~13–16 */
  font-weight: 700;
  margin: 36px 0 14px;      /* stronger separation */
  letter-spacing: 0.2px;
}
p{ margin: 0 0 14px; }
strong{ font-weight: 700; }

.section{
  max-width: 760px;
}

/* Thin banner treatment */
.banner{
  margin-top: 28px;
  max-width: 760px;
  height: 160px;              /* controls banner thickness */
  overflow: hidden;
  border-radius: 2px;
}

.banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;          /* crops image instead of shrinking */
  display: block;
}

/* Responsive */
@media (max-width: 780px){
  .header{ flex-direction:column; align-items:flex-start; }
  .nav-wrap{ text-align:left; }
  h1{ font-size: 42px; }
  .brand img{ width: 180px; }
}

/* Tighter, cleaner leadership layout */
.leadership{
  display: grid;
  grid-template-columns: 88px 1fr; /* slightly smaller image column */
  gap: 14px;
  align-items: start;
  margin: 12px 0 10px;
  max-width: 760px;
}

.headshot{
  width: 88px;
  aspect-ratio: 1 / 1;
  border-radius: 8px;           /* a bit more polished */
  overflow: hidden;
  border: 1px solid rgba(14,20,18,.18);
  background: rgba(255,255,255,.55);
}

.headshot img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

/* Optional: make the “name” line sit tighter */
.leadership p{
  margin-top: 0;
}

/* Leadership block: align image with body text, not header */
.leadership {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 14px;
  align-items: start;
  margin: 18px 0 10px;     /* pushes image down */
  max-width: 760px;
}

/* Subtle logo size refinement */
.brand img {
  max-width: 180px;
}

/* Reduce space before page content */
.section {
  margin-top: 28px;
}