:root {
  --evergreen: #17382e;
  --evergreen-2: #516c60;
  --sage: #a6b3a8;
  --stone: #c9bbaa;
  --offwhite: #f4f1eb;
  --paper: #fbf9f4;
  --ink: #1c2b25;
  --muted: #68786e;
  --line: rgba(23, 56, 46, 0.13);
  --soft: rgba(201, 187, 170, 0.18);
  --container: min(1180px, calc(100vw - 72px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

.header-mark {
  display: inline-flex;
  width: 22px;
  height: 40px;
  margin-right: 15px;
  color: var(--evergreen);
}

.header-mark svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.mark-staff,
.mark-serpent {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-serpent { stroke-width: 1.9; }

.container {
  width: var(--container);
  margin: 0 auto;
}

.container.narrow { max-width: 820px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 max(36px, calc((100vw - 1180px) / 2));
  background: rgba(244, 241, 235, 0.9);
  backdrop-filter: blur(12px);
}

.header-wordmark,
.nav-links a,
.footer-brand,
.footer-links a,
.eyebrow,
.tagline,
.category,
.status,
.role,
.pillar-number,
.overlay-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.header-wordmark {
  font-family: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  font-size: 19px;
  color: var(--evergreen);
  letter-spacing: 0.22em;
  opacity: 0.92;
  display: inline-flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(28px, 4vw, 58px);
}

.nav-links a {
  color: var(--evergreen-2);
  font-size: 12px;
  font-weight: 500;
  transition: color 180ms ease, opacity 180ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--evergreen);
}

.section-frame {
  position: relative;
  overflow: clip;
}

.hero {
  min-height: calc(100svh - 88px);
  display: flex;
  align-items: center;
  padding: 86px 0 126px;
}

.hero-inner {
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 930px; }

.hero-title {
  font-family: "Bodoni Moda", "Libre Bodoni", Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(72px, 9.2vw, 138px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.135em;
  margin: 0 0 28px;
  color: var(--evergreen);
  transform: none;
  transform-origin: left center;
}

.tagline {
  margin: 0 0 58px;
  color: var(--evergreen-2);
  font-size: clamp(10px, 1.16vw, 13px);
  font-weight: 600;
  line-height: 1.6;
  white-space: nowrap;
}

.tagline span {
  color: rgba(81, 108, 96, 0.45);
  margin: 0 18px;
}

.hero-summary {
  max-width: 800px;
  margin: 0;
  font-size: clamp(20px, 1.65vw, 25px);
  line-height: 1.58;
  color: rgba(28, 43, 37, 0.82);
}

.hero-actions {
  display: flex;
  gap: 48px;
  align-items: center;
  margin-top: 54px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  border-bottom: 1px solid rgba(23, 56, 46, 0.38);
  padding-bottom: 4px;
  color: var(--evergreen-2);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.text-link:hover {
  color: var(--evergreen);
  border-color: var(--evergreen);
  transform: translateY(-1px);
}

.text-link.muted { color: rgba(81, 108, 96, 0.88); }

 .hero-wave {
  display: none;
}

.wave {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

/* Subtle right-side arc treatment — broad, tonal, and intentionally low-contrast. */
.wave-one {
  right: -54vw;
  top: -52vh;
  width: 132vw;
  height: 132vw;
  border: 76px solid rgba(201, 187, 170, 0.115);
  box-shadow: inset 0 10px 24px rgba(23, 56, 46, 0.018), 0 18px 42px rgba(23, 56, 46, 0.018);
}

.wave-two {
  right: -57vw;
  top: -48vh;
  width: 119vw;
  height: 119vw;
  border: 1px solid rgba(23, 56, 46, 0.026);
  background: rgba(250, 248, 243, 0.09);
}

.wave-three {
  right: -51vw;
  top: -39vh;
  width: 108vw;
  height: 108vw;
  border: 22px solid rgba(166, 179, 168, 0.032);
}

.strategy {
  padding: 112px 0 120px;
  background: #e9e4d9;
  border-top: 1px solid rgba(23, 56, 46, 0.06);
  border-bottom: 1px solid rgba(23, 56, 46, 0.06);
}

.eyebrow {
  margin: 0 0 26px;
  color: var(--evergreen-2);
  font-size: 12px;
  font-weight: 600;
}

.section-title,
.page-title {
  font-family: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  color: var(--evergreen);
  font-weight: 400;
  line-height: 1.08;
  margin: 0;
}

.section-title { font-size: clamp(42px, 6vw, 74px); }
.section-title.small-title { font-size: clamp(38px, 4.6vw, 58px); }

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 82px;
}

.pillar { padding: 0 46px 0 0; }

.pillar + .pillar {
  border-left: 1px solid var(--line);
  padding-left: 46px;
}

.pillar-number {
  display: block;
  margin-bottom: 22px;
  color: rgba(81, 108, 96, 0.62);
  font-size: 10px;
  font-weight: 600;
}

.pillar h3,
.person-meta h3,
.profile-copy h3,
.insight-card h3,
.insight-card h2 {
  font-family: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  color: var(--evergreen);
  font-weight: 400;
  line-height: 1.2;
}

.pillar h3 {
  margin: 0 0 24px;
  font-size: clamp(24px, 2.4vw, 34px);
}

.pillar p {
  margin: 0;
  max-width: 350px;
  color: rgba(28, 43, 37, 0.74);
  font-size: 16px;
  line-height: 1.72;
}

.team {
  padding: 118px 0 96px;
  background: var(--offwhite);
}

.section-kicker-row {
  display: grid;
  grid-template-columns: 1fr minmax(240px, 410px);
  gap: 72px;
  align-items: end;
}

.team .section-kicker-row {
  grid-template-columns: 1fr;
}

.section-note {
  margin: 0 0 8px;
  color: rgba(28, 43, 37, 0.63);
  font-size: 17px;
  line-height: 1.7;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin-top: 68px;
}

.person-card.compact {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.photo-button,
.profile-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid rgba(23, 56, 46, 0.08);
  padding: 0;
  background: rgba(250, 248, 243, 0.55);
  overflow: hidden;
  cursor: pointer;
}

.photo-button img,
.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: grayscale(100%);
  transition: transform 260ms ease, filter 260ms ease;
}

.photo-button img.peter-photo,
.profile-photo img.peter-photo {
  object-position: center center;
}

.photo-button:hover img,
.profile-photo:hover img {
  transform: scale(1.025);
  filter: grayscale(100%) contrast(1.04);
}

.photo-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: 28px;
  color: var(--paper);
  background: linear-gradient(180deg, rgba(23, 56, 46, 0.05) 0%, rgba(23, 56, 46, 0.82) 100%);
  opacity: 0;
  transition: opacity 220ms ease;
  text-align: left;
}

.photo-button:hover .photo-overlay,
.photo-button:focus-visible .photo-overlay,
.profile-photo:hover .photo-overlay,
.profile-photo:focus-visible .photo-overlay {
  opacity: 1;
}

.overlay-kicker {
  font-size: 10px;
  font-weight: 600;
  color: rgba(250, 248, 243, 0.72);
}

.overlay-summary {
  font-family: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(23px, 2.5vw, 33px);
  line-height: 1.17;
  max-width: 360px;
}

.overlay-link {
  display: inline-flex;
  width: max-content;
  font-size: 13px;
  font-weight: 600;
  border-bottom: 1px solid rgba(250, 248, 243, 0.52);
  padding-bottom: 3px;
}

.person-meta {
  padding-top: 24px;
}

.person-meta h3 {
  margin: 0 0 9px;
  font-size: 28px;
}

.role {
  margin: 0;
  color: var(--evergreen-2);
  font-size: 11px;
  font-weight: 600;
}

.section-cta {
  margin-top: 46px;
  display: flex;
  justify-content: center;
}

.insights-preview {
  padding: 112px 0 120px;
  background: #e9e4d9;
}

.insights-heading-row { margin-bottom: 68px; }

.insights-heading-row .text-link {
  align-self: center;
  justify-self: end;
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.insight-card {
  min-height: 220px;
  padding: 36px 36px 34px;
  border: 1px solid var(--line);
  background: rgba(244, 241, 235, 0.38);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.insight-card:hover {
  transform: translateY(-2px);
  border-color: rgba(23, 56, 46, 0.22);
  background: rgba(244, 241, 235, 0.58);
}

.status {
  display: block;
  margin-bottom: 26px;
  color: rgba(81, 108, 96, 0.45);
  font-size: 10px;
  font-weight: 600;
}

.category {
  margin: 0 0 22px;
  color: var(--evergreen-2);
  font-size: 11px;
  font-weight: 600;
}

.insight-card h3,
.insight-card h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 34px);
}

.insight-card.large { min-height: 300px; }

.insight-card.large p:not(.category) {
  margin: 26px 0 0;
  color: rgba(28, 43, 37, 0.66);
  line-height: 1.72;
}

.contact {
  padding: 78px 0;
  background: #f1eee7;
  border-top: 1px solid rgba(23, 56, 46, 0.08);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 720px) max-content;
  gap: 56px;
  align-items: center;
}

.contact-copy {
  margin: 0;
  color: rgba(28, 43, 37, 0.72);
  font-size: clamp(18px, 1.7vw, 23px);
  line-height: 1.58;
}

.contact-button,
.linkedin-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 44px;
  padding: 13px 22px 12px;
  border: 1px solid rgba(23, 56, 46, 0.35);
  color: var(--evergreen);
  background: rgba(250, 248, 243, 0.32);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.contact-button:hover,
.linkedin-button:hover {
  background: rgba(23, 56, 46, 0.06);
  border-color: rgba(23, 56, 46, 0.58);
  transform: translateY(-1px);
}

.email-link {
  white-space: nowrap;
  margin-bottom: 13px;
}

.footer {
  padding: 58px 0 44px;
  border-top: 1px solid rgba(23, 56, 46, 0.08);
  background: #e9e4d9;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 60px;
  align-items: start;
}

.footer-brand {
  font-family: "Bodoni Moda", Didot, "Bodoni 72", Georgia, serif;
  font-size: 18px;
  color: var(--evergreen);
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  gap: 26px;
}

.footer-links a {
  font-size: 10px;
  color: var(--evergreen-2);
  font-weight: 600;
}

.copyright {
  margin: 0;
  color: rgba(28, 43, 37, 0.46);
  font-size: 12px;
}

.disclaimer {
  grid-column: 1 / -1;
  max-width: 1000px;
  margin: 0;
  color: rgba(28, 43, 37, 0.44);
  font-size: 11px;
  line-height: 1.55;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
}

.modal[aria-hidden="false"] { display: block; }

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 56, 46, 0.26);
  backdrop-filter: blur(8px);
}

.modal-panel {
  position: relative;
  width: min(740px, calc(100vw - 40px));
  max-height: min(78vh, 820px);
  overflow: auto;
  margin: 10vh auto 0;
  padding: 48px 50px 50px;
  background: var(--paper);
  border: 1px solid rgba(23, 56, 46, 0.14);
  color: var(--ink);
  box-shadow: 0 24px 70px rgba(23, 56, 46, 0.14);
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 22px;
  border: 0;
  background: none;
  color: var(--evergreen-2);
  font-size: 30px;
  cursor: pointer;
}

.modal-panel h2 {
  margin: 0 0 24px;
  font-family: "Bodoni Moda", Didot, serif;
  color: var(--evergreen);
  font-weight: 400;
  font-size: clamp(36px, 5vw, 56px);
}

.modal-panel p {
  color: rgba(28, 43, 37, 0.74);
  font-size: 17px;
  line-height: 1.76;
  margin: 0 0 18px;
}

.modal-panel p:last-child { margin-bottom: 0; }

/* Interior pages */
.page-hero,
.insights-page {
  padding: 126px 0 78px;
}

.page-title {
  font-size: clamp(58px, 9vw, 116px);
  margin-bottom: 28px;
}

.page-intro {
  max-width: 720px;
  margin: 0;
  color: rgba(28, 43, 37, 0.7);
  font-size: 20px;
  line-height: 1.7;
}

.profiles-section {
  padding: 72px 0 96px;
}

.advisor-section {
  background: #e9e4d9;
  border-top: 1px solid rgba(23, 56, 46, 0.06);
}

.subsection-heading {
  margin-bottom: 48px;
}

.profile-list {
  display: grid;
  gap: 42px;
}

.profile-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  padding: 42px 0;
  border-top: 1px solid rgba(23, 56, 46, 0.09);
}

.profile-card:first-child { border-top: 0; padding-top: 0; }


.profile-media {
  width: 100%;
  max-width: 320px;
}

.profile-media .profile-photo {
  max-width: none;
}

.profile-media .profile-actions {
  margin-top: 14px;
}

.profile-media .linkedin-button {
  width: 100%;
  min-height: 40px;
  padding: 12px 14px 11px;
  font-size: 9.5px;
  letter-spacing: 0.13em;
}

.profile-photo {
  max-width: 320px;
}

.profile-copy h3 {
  margin: 0 0 9px;
  font-size: clamp(32px, 4vw, 52px);
}

.profile-bio {
  margin-top: 30px;
  max-width: 760px;
}

.profile-bio p {
  margin: 0 0 17px;
  color: rgba(28, 43, 37, 0.73);
  font-size: 17px;
  line-height: 1.78;
}

.profile-bio p:last-child { margin-bottom: 0; }

.profile-actions {
  margin-top: 26px;
}

.profile-actions .linkedin-button {
  background: transparent;
}

.insights-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 82px;
}

@media (max-width: 980px) {
  :root { --container: min(100vw - 44px, 760px); }
  .site-header { padding: 0 22px; height: 78px; }
  .header-wordmark { display: none; }
  .site-header { justify-content: center; }
  .nav-links { gap: 22px; }
  .nav-links a { font-size: 10px; letter-spacing: 0.15em; }
  .hero { min-height: auto; padding: 86px 0 96px; }
  .hero-title {
  font-family: "Bodoni Moda", "Libre Bodoni", Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(72px, 9.2vw, 138px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.135em;
  margin: 0 0 28px;
  color: var(--evergreen);
  transform: none;
  transform-origin: left center;
}
  .tagline { white-space: normal; font-size: 10px; margin-bottom: 44px; }
  .tagline span { margin: 0 9px; }
  .hero-summary { font-size: 20px; }
  .hero-wave { display: none; }
  .pillars, .team-grid, .insight-grid, .insights-page-grid { grid-template-columns: 1fr; }
  .pillar, .pillar + .pillar { padding: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 34px; margin-top: 34px; }
  .pillar:first-child { border-top: 0; padding-top: 0; margin-top: 0; }
  .section-kicker-row, .contact-inner, .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .contact-button { justify-self: start; }
  .insights-heading-row .text-link { justify-self: start; }
  .person-card.compact { max-width: 520px; }
  .contact-inner { align-items: start; }
  .footer-links { justify-content: flex-start; flex-wrap: wrap; }
  .profile-card { grid-template-columns: 1fr; }
  .profile-photo { max-width: 360px; }
  .profile-media { max-width: 360px; }
}

@media (max-width: 560px) {
  body { font-size: 15px; }
  .nav-links { gap: 14px; width: 100%; justify-content: space-between; }
  .nav-links a { font-size: 9px; letter-spacing: 0.12em; }
  .hero-actions { flex-wrap: wrap; gap: 24px; }
  .strategy, .team, .insights-preview, .contact { padding: 82px 0; }
  .hero-title {
  font-family: "Bodoni Moda", "Libre Bodoni", Didot, "Bodoni 72", Georgia, serif;
  font-size: clamp(72px, 9.2vw, 138px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.135em;
  margin: 0 0 28px;
  color: var(--evergreen);
  transform: none;
  transform-origin: left center;
}
  .section-title { font-size: 42px; }
  .pillars { margin-top: 58px; }
  .photo-overlay { opacity: 1; background: linear-gradient(180deg, rgba(23, 56, 46, 0) 0%, rgba(23, 56, 46, 0.78) 100%); }
  .overlay-summary { display: none; }
  .modal-panel { padding: 40px 28px; }
}
