/* HQ V3 — EP live revision 18 Sep 2026 ~10:30 PM ET (home hero portrait) */
:root {
  --paper: #F7F5F1;
  --white: #ffffff;
  --ink: #1C2433;
  --navy: #243060;
  --muted: #5a6577;
  --line: #e4e0d8;
  --accent: #3d5a6c;
  --measure: 38rem;
  --measure-form: 28rem;
  --serif: Georgia, "Iowan Old Style", "Palatino Linotype", Palatino, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16px;
}
.draft-chip {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 100;
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  background: rgba(247,245,241,0.92);
  border: 1px solid var(--line);
  padding: 0.35rem 0.55rem;
}

/* Editorial masthead — mobile-first hamburger (paint-proof) */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding: 0.75rem 5vw;
  min-height: 3rem;
  border-bottom: 1px solid var(--line);
  background: rgba(247,245,241,0.97);
  position: relative;
}
.brand {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  z-index: 2;
}
/* Default (mobile): Menu visible, link row hidden */
.nav-toggle {
  display: inline-flex !important;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--navy);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
}
.nav-toggle:hover { border-color: var(--navy); }
.nav {
  display: none !important;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  padding: 0.35rem 5vw 0.75rem;
  z-index: 50;
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1;
}
.site-header.nav-open .nav {
  display: flex !important;
}
.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  white-space: normal;
}
.nav a:hover { color: var(--navy); }
.nav a.active {
  color: var(--navy);
  font-weight: 700;
  box-shadow: inset 3px 0 0 var(--navy);
  padding-left: 0.65rem;
}

/* Desktop: one intentional row; Menu hidden; never wrap */
@media (min-width: 901px) {
  .site-header {
    padding: 0.85rem 5vw;
    min-height: 3.25rem;
  }
  .nav-toggle {
    display: none !important;
  }
  .nav {
    display: flex !important;
    position: static;
    flex-direction: row;
    flex-wrap: nowrap !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0 1.35rem;
    background: transparent;
    border-bottom: none;
    padding: 0;
    z-index: auto;
  }
  .site-header.nav-open .nav {
    display: flex !important;
  }
  .nav a {
    padding: 0 0 0.15rem;
    border-bottom: 2px solid transparent;
    white-space: nowrap !important;
    box-shadow: none;
  }
  .nav a.active {
    border-bottom-color: var(--navy);
    padding-left: 0;
    box-shadow: none;
  }
}

/* HOME — major portrait hero */
.home-hero {
  padding: 4.5rem 5vw 3.5rem;
  border-bottom: 1px solid var(--line);
}
.home-hero-grid {
  max-width: 58rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
  gap: 2.5rem 3rem;
  align-items: center;
}
.home-hero-copy h1 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(2.2rem, 4.5vw, 3rem);
  line-height: 1.12;
  margin: 0 0 0.65rem;
}
.home-hero .roles {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink);
  margin: 0 0 1.25rem;
  font-weight: 400;
}
.home-hero .lede {
  font-size: 1.05rem;
  color: var(--ink);
  margin: 0 0 0.85rem;
  line-height: 1.55;
  max-width: 34rem;
}
.home-hero .warmth {
  color: var(--muted);
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 34rem;
}
.home-hero-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ebe7e0;
  border: 1px solid var(--line);
  border-radius: 6px;
}
.home-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  display: block;
}
.interest-block {
  border-top: 1px solid var(--line);
  padding: 3.5rem 5vw;
}
.interest-block .inner {
  max-width: var(--measure);
  margin: 0 auto;
}
.interest-block h2 {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.5vw, 1.75rem);
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 1rem;
}
.interest-block p {
  color: var(--muted);
  margin: 0 0 1.35rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.interest-block .more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  text-decoration: none;
}
.interest-block .more:hover { text-decoration: underline; }

.page-hero {
  padding: 3.5rem 5vw 2rem;
  border-bottom: 1px solid var(--line);
}
.page-hero .inner {
  max-width: var(--measure);
  margin: 0 auto;
}
.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 0.75rem;
  font-weight: 600;
}
h1 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1.85rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 0.85rem;
}
.lede {
  font-size: 1.05rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.55;
}
.section { padding: 2.75rem 5vw 3.5rem; }
.prose {
  max-width: var(--measure);
  margin: 0 auto;
}
.prose p { color: var(--muted); margin: 0 0 1rem; }
.prose h2 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--navy);
  font-weight: 500;
  margin: 2rem 0 0.65rem;
}
.prose h2:first-child { margin-top: 0; }
.prose ul { color: var(--muted); padding-left: 1.15rem; margin: 0 0 1rem; }
.prose li { margin-bottom: 0.4rem; }
.cta-block {
  margin-top: 2rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}
.btn {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  background: var(--navy);
  color: #fff;
  padding: 0.7rem 1.15rem;
  border: 1px solid var(--navy);
  cursor: pointer;
  font-family: inherit;
}
.btn:hover { background: var(--ink); }
.note {
  font-size: 0.88rem;
  color: var(--muted);
  background: #eef2f4;
  border: 1px solid var(--line);
  padding: 0.9rem 1rem;
  margin: 1.25rem 0;
}
.note.note-tight { margin-top: 0; }
.helper { font-size: 0.88rem; color: var(--muted); margin: 0 0 1rem; }
.helper.helper-after { margin-top: 0.85rem; margin-bottom: 0; }

.chooser-q {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  color: var(--navy);
  margin: 0 0 1.5rem;
  font-weight: 500;
}
.choice-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  max-width: var(--measure-form);
  margin-bottom: 2rem;
}
.choice-list button {
  text-align: left;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.85rem 1.1rem;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--navy);
  cursor: pointer;
  font-family: inherit;
}
.choice-list button:hover { border-color: var(--line); filter: brightness(0.98); }
.choice-list button.selected {
  border-color: var(--navy);
  box-shadow: inset 0 0 0 1px var(--navy);
}
.form-panel {
  display: none;
  max-width: var(--measure-form);
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.35rem;
}
.form-panel.visible { display: block; }
.form-panel h2 {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 0 0 0.5rem;
  font-weight: 500;
}
.form-mock { display: grid; gap: 0.7rem; font-size: 0.88rem; }
.form-mock label {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.form-mock input, .form-mock textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
}
.form-mock textarea { min-height: 4.5rem; resize: vertical; }
.form-mock button { justify-self: start; }
.change-choice {
  display: none;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  color: var(--accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  text-decoration: underline;
}
.change-choice.visible { display: inline-block; }
.reassure {
  max-width: var(--measure);
  margin-top: 1.75rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.site-footer {
  margin-top: 1rem;
  padding: 2rem 5vw 2.5rem;
  border-top: 1px solid var(--line);
  background: #f0ebe3;
  font-size: 0.8rem;
  color: var(--muted);
}
.footer-inner {
  max-width: var(--measure);
  margin: 0 auto;
}
.footer-name {
  font-family: var(--serif);
  color: var(--navy);
  font-size: 0.95rem;
  margin: 0 0 0.65rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1rem;
  margin-bottom: 1rem;
}
.footer-nav a { color: var(--muted); text-decoration: none; }
.footer-nav a:hover { color: var(--navy); }
.entities { margin: 0 0 0.75rem; color: var(--navy); font-weight: 500; }
.entities span + span::before { content: " · "; font-weight: 400; color: var(--muted); }
.hold-line {
  margin-top: 0.75rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}


@media (max-width: 900px) {
  .home-hero { padding: 2.75rem 5vw 2.25rem; }
  .home-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .home-hero-photo {
    order: -1;
    max-width: 22rem;
    width: 100%;
  }
  .interest-block { padding: 2.35rem 5vw; }
  .page-hero { padding: 2.5rem 5vw 1.5rem; }
  .section { padding: 2rem 5vw 2.75rem; }
}

/* Portrait — Contact intro (editorial, restrained) */
.contact-intro {
  display: flex;
  align-items: center;
  gap: 1.15rem 1.35rem;
}
.contact-intro h1 {
  margin: 0;
  flex: 1 1 auto;
}
.portrait {
  flex: 0 0 auto;
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 6px;
  border: 1px solid var(--line);
  display: block;
  background: var(--white);
}
@media (max-width: 900px) {
  .contact-intro {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }
  .portrait {
    width: 104px;
    height: 104px;
  }
}


/* Contact ending — COPY LOCK 18 Sep 2026 */
.contact-ending {
  margin-top: 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  max-width: var(--measure);
}
.contact-ending h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0 0 0.85rem;
}
.contact-ending p {
  margin: 0 0 0.85rem;
  color: var(--ink);
}
.contact-ending p:last-child { margin-bottom: 0; }

.hp{position:absolute;left:-10000px;opacity:0;height:0;width:0;overflow:hidden;}
